decode static method

Implementation

static XdrSimplePaymentResult decode(XdrDataInputStream stream) {
  XdrMuxedAccount destination = XdrMuxedAccount.decode(stream);
  XdrAsset asset = XdrAsset.decode(stream);
  XdrInt64 amount = XdrInt64.decode(stream);
  return XdrSimplePaymentResult(destination, asset, amount);
}