@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
27 lines (26 loc) • 706 B
text/typescript
export interface IssueVirtualAccountNumberToWalletRequest {
/**
* The country that the account number will be associated with. Two-letter ISO 3166-1 ALPHA-2 code. Uppercase.
*/
country: string;
/**
* Currency of the account. Three-letter ISO 4217 code.
*/
currency: string;
/**
* Description of the account.
*/
description?: string;
/**
* ID of the wallet the bank account number is issued to. String starting with **ewallet_**.
*/
ewallet: `ewallet_${string}`;
/**
* ID of this account, as provided by the merchant. Limited to 45 characters.
*/
merchant_reference_id?: string;
/**
* A JSON object defined by the client.
*/
metadata?: string;
};