DataEntryXdr

data class DataEntryXdr(val accountId: AccountIDXdr, val dataName: String64Xdr, val dataValue: DataValueXdr, val ext: DataEntryExtXdr)

XDR Source: struct DataEntry { AccountID accountID; // account this data belongs to string64 dataName; DataValue dataValue;

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

};

Constructors

Link copied to clipboard
constructor(accountId: AccountIDXdr, dataName: String64Xdr, dataValue: DataValueXdr, ext: DataEntryExtXdr)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

account this data belongs to

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun encode(writer: XdrWriter)