UNPKG

akua-sdk

Version:

TypeScript SDK for Akua Acquiring Processor

23 lines (22 loc) 828 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentEntryMode = void 0; /** * Enumeration of payment entry modes. * @enum {string} */ var PaymentEntryMode; (function (PaymentEntryMode) { /** Payment entry mode is not present */ PaymentEntryMode["NOT_PRESENT"] = "not-present"; /** Payment entry mode is manual */ PaymentEntryMode["MANUAL"] = "manual"; /** Payment entry mode is chip */ PaymentEntryMode["CHIP"] = "chip"; /** Payment entry mode is swipe */ PaymentEntryMode["SWIPE"] = "swipe"; /** Payment entry mode is contactless */ PaymentEntryMode["CONTACTLESS"] = "contactless"; /** Payment entry mode is QR code */ PaymentEntryMode["QR_CODE"] = "qr_code"; })(PaymentEntryMode || (exports.PaymentEntryMode = PaymentEntryMode = {}));