sourceAmount method

StrictSendPathsRequestBuilder sourceAmount(
  1. String amount
)

Sets the source amount. See: List Strict Send Payment Paths

Implementation

StrictSendPathsRequestBuilder sourceAmount(String amount) {
  queryParameters.addAll({"source_amount": amount});
  return this;
}