@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
27 lines (26 loc) • 720 B
text/typescript
export interface IssueCardRequest {
/**
* ID of the card program that the card is issued from. String starting with **cardprog_**. Required if `country` is blank.
*/
card_program?: `cardprog_${string}`;
/**
* Two-letter ISO 3166-1 ALPHA-2 code for the country. Uppercase. Required if `card_program` is blank.
*/
country?: string;
/**
* ID of the wallet contact that the card is assigned to. String starting with **cont_**.
*/
ewallet_contact: `cont_${string}`;
/**
* Expiration month of the card.
*/
expiration_month?: string;
/**
* Expiration year of the card.
*/
expiration_year?: string;
/**
* A JSON object defined by the client.
*/
metadata?: object;
};