decode method

XdrTrustLineEntryV1 decode (
  1. XdrDataInputStream stream
)

Implementation

static XdrTrustLineEntryV1 decode(XdrDataInputStream stream) {
  XdrTrustLineEntryV1 decodedTrustLineEntryV1 = XdrTrustLineEntryV1();
  decodedTrustLineEntryV1.liabilities = XdrLiabilities.decode(stream);
  decodedTrustLineEntryV1.ext = XdrTrustLineEntryV1Ext.decode(stream);
  return decodedTrustLineEntryV1;
}