UNPKG

akua-sdk

Version:

TypeScript SDK for Akua Acquiring Processor

19 lines (18 loc) 507 B
/** * Enumeration of payment entry modes. * @enum {string} */ export declare enum PaymentEntryMode { /** Payment entry mode is not present */ NOT_PRESENT = "not-present", /** Payment entry mode is manual */ MANUAL = "manual", /** Payment entry mode is chip */ CHIP = "chip", /** Payment entry mode is swipe */ SWIPE = "swipe", /** Payment entry mode is contactless */ CONTACTLESS = "contactless", /** Payment entry mode is QR code */ QR_CODE = "qr_code" }