CreatePaymentTransferQuoteBody: {
    amount: string;
    currency: string;
    execute?: boolean;
    source: TransferSource;
    sourceType: CreatePaymentTransferQuoteBodySourceType;
    target: TransferTarget;
    targetType: CreatePaymentTransferQuoteBodyTargetType;
}

Type declaration

  • amount: string

    The amount of the transfer, which is either for the source currency to buy, or the target currency to receive.

  • currency: string

    The currency of the transfer. This can be specified as the source currency, which would be used to buy, or else the target currency, which is how much will be received.

  • Optionalexecute?: boolean

    Whether to execute the transfer. If true, the transfer will be committed and executed. If false, the quote will be generated and returned.

  • source: TransferSource
  • sourceType: CreatePaymentTransferQuoteBodySourceType

    The type of the source of the transfer.

  • target: TransferTarget
  • targetType: CreatePaymentTransferQuoteBodyTargetType

    The type of the target of the transfer.