setSourceAccount method

PathPaymentStrictReceiveOperationBuilder setSourceAccount (
  1. String sourceAccount
)

Sets the source account for this operation.

Implementation

PathPaymentStrictReceiveOperationBuilder setSourceAccount(
    String sourceAccount) {
  _mSourceAccount =
      checkNotNull(sourceAccount, "sourceAccount cannot be null");
  return this;
}