UNPKG

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.

18 lines (17 loc) 646 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TokenType = void 0; /** * 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. */ var TokenType; (function (TokenType) { TokenType["CARD"] = "card"; TokenType["APPLE_PAY"] = "applepay"; TokenType["GOOGLE_PAY"] = "googlepay"; })(TokenType = exports.TokenType || (exports.TokenType = {})); ;