Class PathPaymentStrictReceiveOp

java.lang.Object
org.stellar.sdk.xdr.PathPaymentStrictReceiveOp

public class PathPaymentStrictReceiveOp extends Object
PathPaymentStrictReceiveOp's original definition in the XDR file is:
 struct PathPaymentStrictReceiveOp
 {
     Asset sendAsset; // asset we pay with
     int64 sendMax;   // the maximum amount of sendAsset to
                      // send (excluding fees).
                      // The operation will fail if can't be met

     MuxedAccount destination; // recipient of the payment
     Asset destAsset;          // what they end up with
     int64 destAmount;         // amount they end up with

     Asset path<5>; // additional hops it must go through to get there
 };