BucketMetadataXdr

data class BucketMetadataXdr(val ledgerVersion: Uint32Xdr, val ext: BucketMetadataExtXdr)

XDR Source: 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;

};

Constructors

Link copied to clipboard
constructor(ledgerVersion: Uint32Xdr, ext: BucketMetadataExtXdr)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard

Indicates the protocol version used to create / merge this bucket.

Functions

Link copied to clipboard
fun encode(writer: XdrWriter)