decode method

XdrLedgerEntry decode (
  1. 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;
}