setMuxedSourceAccount method

ManageDataOperationBuilder setMuxedSourceAccount (
  1. MuxedAccount sourceAccount
)

Sets the muxed source account for this operation.

Implementation

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