setMuxedSourceAccount method

PathPaymentStrictSendOperationBuilder setMuxedSourceAccount (
  1. MuxedAccount sourceAccount
)

Sets the muxed source account for this operation.

Implementation

PathPaymentStrictSendOperationBuilder setMuxedSourceAccount(
    MuxedAccount sourceAccount) {
  checkNotNull(sourceAccount, "sourceAccount cannot be null");
  _mSourceAccount = sourceAccount;
  return this;
}