PathPaymentStrictSendOperationBuilder.forMuxedDestinationAccount constructor

PathPaymentStrictSendOperationBuilder.forMuxedDestinationAccount(
  1. Asset sendAsset,
  2. String sendAmount,
  3. MuxedAccount destination,
  4. Asset destAsset,
  5. String destMin
)

Creates a PathPaymentStrictSendOperation builder for a MuxedAccount as a destination.

Implementation

PathPaymentStrictSendOperationBuilder.forMuxedDestinationAccount(
    Asset sendAsset,
    String sendAmount,
    MuxedAccount destination,
    Asset destAsset,
    String destMin) {
  this._sendAsset = checkNotNull(sendAsset, "sendAsset cannot be null");
  this._sendAmount = checkNotNull(sendAmount, "sendAmount cannot be null");
  checkNotNull(destination, "destination cannot be null");
  this._destination = destination;
  this._destAsset = checkNotNull(destAsset, "destAsset cannot be null");
  this._destMin = checkNotNull(destMin, "destMin cannot be null");
}