Class BucketMetadata

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

public class BucketMetadata extends Object
BucketMetadata's original definition in the XDR file is:
 struct BucketMetadata
 {
     // Indicates the protocol version used to create / merge this bucket.
     uint32 ledgerVersion;

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