decode static method

Implementation

static XdrTrustLineEntry decode(XdrDataInputStream stream) {
  XdrAccountID accountID = XdrAccountID.decode(stream);
  XdrTrustlineAsset asset = XdrTrustlineAsset.decode(stream);
  XdrInt64 balance = XdrInt64.decode(stream);
  XdrInt64 limit = XdrInt64.decode(stream);
  XdrUint32 flags = XdrUint32.decode(stream);
  XdrTrustLineEntryExt ext = XdrTrustLineEntryExt.decode(stream);
  return XdrTrustLineEntry(accountID, asset, balance, limit, flags, ext);
}