UNPKG

bc-opayo-sdk

Version:

BetterCommerce's Opayo NodeJS SDK enables BC client applications to integrate with Opayo merchant API system. It publishes an interface to interact with [Opayo API](https://www.elavon.co.uk/resource-center/help-with-your-solutions/opayo/integrations/types

17 lines (16 loc) 636 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InitiatorType = void 0; /** * Enum {@link InitiatorType} represents the various types of initiators for transactions. * * @readonly * @enum {string} * @property {string} CARDHOLDER - The transaction was initiated by the cardholder. * @property {string} MERCHANT - The transaction was initiated by the merchant. */ var InitiatorType; (function (InitiatorType) { InitiatorType["CARDHOLDER"] = "Cardholder"; InitiatorType["MERCHANT"] = "Merchant"; })(InitiatorType = exports.InitiatorType || (exports.InitiatorType = {}));