Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/resources/accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,11 @@ export interface Account {
*/
auth_rule_tokens?: Array<string>;

/**
* 3-digit alphabetic ISO 4217 code for the currency of the cardholder.
*/
cardholder_currency?: string;

verification_address?: Account.VerificationAddress;
}

Expand Down
11 changes: 11 additions & 0 deletions src/resources/card-programs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,17 @@ export interface CardProgram {
* The first digits of the card number that this card program starts with.
*/
pan_range_start: string;

/**
* 3-digit alphabetic ISO 4217 code for the currency of the cardholder.
*/
cardholder_currency?: string;

/**
* List of 3-digit alphabetic ISO 4217 codes for the currencies that the card
* program supports for settlement.
*/
settlement_currencies?: Array<string>;
}

export interface CardProgramListParams extends CursorPageParams {}
Expand Down
5 changes: 5 additions & 0 deletions src/resources/cards/cards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,11 @@ export interface Card {
*/
auth_rule_tokens?: Array<string>;

/**
* 3-digit alphabetic ISO 4217 code for the currency of the cardholder.
*/
cardholder_currency?: string;

/**
* Three digit cvv printed on the back of the card.
*/
Expand Down