@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
15 lines (14 loc) • 362 B
text/typescript
export interface PutFundsOnHoldRequest {
/**
* 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 associated with the contact. String starting with **ewallet_**.
*/
ewallet: `ewallet_${string}`;
};