setPath method

Sets path for this operation

Implementation

PathPaymentStrictSendOperationBuilder setPath(List<Asset> path) {
  checkArgument(
      path.length <= 5, "The maximum number of assets in the path is 5");
  this._path = path;
  return this;
}