@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
23 lines (22 loc) • 399 B
text/typescript
export interface SetWalletAccountLimitRequest {
/**
* Rapyd Wallet ID.
*/
wallet: string;
/**
* The ID of the account within the wallet.
*/
account_id?: string;
/**
* The amount of the limit.
*/
amount: string;
/**
* Three-letter ISO 4217 code for the currency of an existing account.
*/
currency?: string;
/**
* The limit type.
*/
type: string;
};