UNPKG

@adyen/api-library

Version:

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

8 lines (7 loc) 346 B
/** * Type of token replacing the PAN of a payment card to identify the payment mean of the customer. It allows, for a merchant, to use a token for a transaction only or for a longer period. Possible values: * **Transaction** * **Customer** */ export declare enum TokenRequestedType { Transaction = "Transaction", Customer = "Customer" }