Skip to main content
const AmountType: {
  Source: "source";
  Target: "target";
};
Defined in: _vendor/api/resources/transfers/client/requests/TransferRequest.ts:98 Specifies whether the given amount is to be received by the target or taken from the source.
  • target: The transfer target receives the exact value specified in amount. Fees are added to the amount taken from the transfer source.
  • source: The transfer target receives the value specified in amount, minus any fees.

Type Declaration

Source

readonly Source: "source" = "source";

Target

readonly Target: "target" = "target";