decode static method

Implementation

static XdrLiquidityPoolDepositOp decode(XdrDataInputStream stream) {
  XdrHash xLiquidityPoolID = XdrHash.decode(stream);
  XdrInt64 xMaxAmountA = XdrInt64.decode(stream);
  XdrInt64 xMaxAmountB = XdrInt64.decode(stream);
  XdrPrice xMinPrice = XdrPrice.decode(stream);
  XdrPrice xMaxPrice = XdrPrice.decode(stream);
  return XdrLiquidityPoolDepositOp(
      xLiquidityPoolID, xMaxAmountA, xMaxAmountB, xMinPrice, xMaxPrice);
}