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}`; } //# sourceMappingURL=SimulateABankTransferToAWalletRequest.d.ts.map