Path Payment Strict Receive Op Xdr
data class PathPaymentStrictReceiveOpXdr(val sendAsset: AssetXdr, val sendMax: Int64Xdr, val destination: MuxedAccountXdr, val destAsset: AssetXdr, val destAmount: Int64Xdr, val path: List<AssetXdr>)
XDR Source: 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 thereContent copied to clipboard
};