UNPKG

@bebapps/rapyd-sdk

Version:

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

23 lines (22 loc) 581 B
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}`; };