UNPKG

bc-payments-sdk

Version:

BetterCommerce's Payments NodeJS SDK is a complete solution for storefront clients that integrate payments. `bc-payments-sdk` is a single point interface for storefront clients for interacting with payment gateways.

22 lines (21 loc) 962 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.JuspayPaymentType = void 0; /** * Enum {JuspayPaymentType} provides the list of payment types supported by Juspay payment gateway. * * @enum {number} * @readonly * @memberof Juspay * @ordinal {number} CARD - The payment type for credit/debit card payments. * @ordinal {number} NET_BANKING - The payment type for net banking payments. * @ordinal {number} WALLET - The payment type for wallet payments. * @ordinal {number} UPI - The payment type for UPI payments. */ var JuspayPaymentType; (function (JuspayPaymentType) { JuspayPaymentType[JuspayPaymentType["CARD"] = 1] = "CARD"; JuspayPaymentType[JuspayPaymentType["NET_BANKING"] = 2] = "NET_BANKING"; JuspayPaymentType[JuspayPaymentType["WALLET"] = 3] = "WALLET"; JuspayPaymentType[JuspayPaymentType["UPI"] = 4] = "UPI"; })(JuspayPaymentType || (exports.JuspayPaymentType = JuspayPaymentType = {}));