Class ClaimableBalanceEntry

java.lang.Object
org.stellar.sdk.xdr.ClaimableBalanceEntry

public class ClaimableBalanceEntry extends Object
ClaimableBalanceEntry's original definition in the XDR file is:
 struct ClaimableBalanceEntry
 {
     // Unique identifier for this ClaimableBalanceEntry
     ClaimableBalanceID balanceID;

     // List of claimants with associated predicate
     Claimant claimants<10>;

     // Any asset including native
     Asset asset;

     // Amount of asset
     int64 amount;

     // reserved for future use
     union switch (int v)
     {
     case 0:
         void;
     case 1:
         ClaimableBalanceEntryExtensionV1 v1;
     }
     ext;
 };