destinationAmount method

StrictReceivePathsRequestBuilder destinationAmount(
  1. String amount
)

Sets the destination amount. The amount of the destination asset that should be received. See: List Strict Receive Payment Paths

Implementation

StrictReceivePathsRequestBuilder destinationAmount(String amount) {
  queryParameters.addAll({"destination_amount": amount});
  return this;
}