UNPKG

@bebapps/rapyd-sdk

Version:

An un-official [Rapyd](https://rapyd.net) SDK for Node.js.

15 lines (14 loc) 584 B
export interface SimulateABankTransferToAWalletRequest { /** * The amount of the transaction, in units of the currency defined in `currency`. Decimal, including the correct number of decimal places for the currency exponent, as defined in ISO 2417:2015. If the amount is a whole number, use an integer and not a decimal. */ amount: number; /** * Currency of the transaction. Three-letter ISO 4217 code. */ currency: string; /** * ID of the Virtual Account Number object. String starting with **issuing_**. */ issued_bank_account: `issuing_${string}`; };