decode method
- XdrDataInputStream stream
Implementation
static XdrLedgerKeyData decode(XdrDataInputStream stream) {
XdrLedgerKeyData decodedLedgerKeyData = XdrLedgerKeyData();
decodedLedgerKeyData.accountID = XdrAccountID.decode(stream);
decodedLedgerKeyData.dataName = XdrString64.decode(stream);
return decodedLedgerKeyData;
}