diff --git a/src/resources/accounts.ts b/src/resources/accounts.ts index 88ca3954..5be3d895 100644 --- a/src/resources/accounts.ts +++ b/src/resources/accounts.ts @@ -112,6 +112,11 @@ export interface Account { */ auth_rule_tokens?: Array; + /** + * 3-digit alphabetic ISO 4217 code for the currency of the cardholder. + */ + cardholder_currency?: string; + verification_address?: Account.VerificationAddress; } diff --git a/src/resources/card-programs.ts b/src/resources/card-programs.ts index 62dd1b6d..2853c9a3 100644 --- a/src/resources/card-programs.ts +++ b/src/resources/card-programs.ts @@ -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; } export interface CardProgramListParams extends CursorPageParams {} diff --git a/src/resources/cards/cards.ts b/src/resources/cards/cards.ts index f27e4658..99188d4e 100644 --- a/src/resources/cards/cards.ts +++ b/src/resources/cards/cards.ts @@ -255,6 +255,11 @@ export interface Card { */ auth_rule_tokens?: Array; + /** + * 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. */