export interface TransferFundsBetweenWalletsRequest { /** * Amount of the transfer. Decimal. */ amount: number; /** * Three-letter ISO 4217 code for the currency used in the `amount` field. Uppercase. */ currency: string; /** * ID of the wallet receiving the money. String starting with **ewallet_**. */ destination_ewallet: `ewallet_${string}`; /** * A JSON object defined by the client. */ metadata?: object; /** * ID of the wallet sending the money. String starting with **ewallet_**. */ source_ewallet: `ewallet_${string}`; } //# sourceMappingURL=TransferFundsBetweenWalletsRequest.d.ts.map