decode method
- XdrDataInputStream stream
Implementation
static XdrLedgerEntry decode(XdrDataInputStream stream) {
XdrLedgerEntry decodedLedgerEntry = XdrLedgerEntry();
decodedLedgerEntry.lastModifiedLedgerSeq = XdrUint32.decode(stream);
decodedLedgerEntry.data = XdrLedgerEntryData.decode(stream);
decodedLedgerEntry.ext = XdrLedgerEntryExt.decode(stream);
return decodedLedgerEntry;
}