/**
* 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"
}
