Data Entry Xdr
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;Content copied to clipboard
};
Constructors
Link copied to clipboard
constructor(accountId: AccountIDXdr, dataName: String64Xdr, dataValue: DataValueXdr, ext: DataEntryExtXdr)