UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

14 lines (13 loc) 547 B
/** * Type of cardholder account used for the transaction. Allows a cardholder to select the type of account used for the transaction. Possible values: * **Default** * **Savings** * **Checking** * **CreditCard** * **Universal** * **Investment** * **CardTotals** * **EpurseCard** */ export declare enum AccountType { Default = "Default", Savings = "Savings", Checking = "Checking", CreditCard = "CreditCard", Universal = "Universal", Investment = "Investment", CardTotals = "CardTotals", EpurseCard = "EpurseCard" }