bc-checkout-sdk
Version:
BetterCommerce's Checkout NodeJS SDK enables BC client applications to integrate with Checkout merchant API system. It publishes an interface to interact with [Checkout API](https://api-reference.checkout.com/#operation/getPaymentDetails/) endpoints.
13 lines (12 loc) • 426 B
TypeScript
/**
* TokenType enum represents the different types of tokenized payment methods that can be used.
*
* @ordinal {string} CARD - Represents a card token type.
* @ordinal {string} APPLE_PAY - Represents an Apple Pay token type.
* @ordinal {string} GOOGLE_PAY - Represents a Google Pay token type.
*/
export declare enum TokenType {
CARD = "card",
APPLE_PAY = "applepay",
GOOGLE_PAY = "googlepay"
}