decode method

XdrLedgerKeyTrustLine decode (
  1. XdrDataInputStream stream
)

Implementation

static XdrLedgerKeyTrustLine decode(XdrDataInputStream stream) {
  XdrLedgerKeyTrustLine decodedLedgerKeyTrustLine = XdrLedgerKeyTrustLine();
  decodedLedgerKeyTrustLine.accountID = XdrAccountID.decode(stream);
  decodedLedgerKeyTrustLine.asset = XdrAsset.decode(stream);
  return decodedLedgerKeyTrustLine;
}