decode method

XdrAccountEntryV1 decode (
  1. XdrDataInputStream stream
)

Implementation

static XdrAccountEntryV1 decode(XdrDataInputStream stream) {
  XdrAccountEntryV1 decodedAccountEntryV1 = XdrAccountEntryV1();
  decodedAccountEntryV1.liabilities = XdrLiabilities.decode(stream);
  decodedAccountEntryV1.ext = XdrAccountEntryV1Ext.decode(stream);
  return decodedAccountEntryV1;
}