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