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
21 lines (20 loc) • 1.11 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Apply3DSecureType = void 0;
/**
* Enum {@link Apply3DSecureType} represents the different options for applying 3D-Secure in a payment or authorization request.
*
* @readonly
* @enum {string}
* @property {string} USE_MSP_SETTING - Uses the merchant's default setting for 3D Secure (configured in the Opayo admin panel)
* @property {string} FORCE - Forces 3D Secure authentication, even if the card issuer does not require it
* @property {string} DISABLE - Disables 3D Secure authentication for the transaction (only allowed if the merchant has permission)
* @property {string} APPLY - Attempts 3D Secure authentication if the card supports it, but does not force it
*/
var Apply3DSecureType;
(function (Apply3DSecureType) {
Apply3DSecureType["USE_MSP_SETTING"] = "UseMSPSetting";
Apply3DSecureType["FORCE"] = "Force";
Apply3DSecureType["DISABLE"] = "Disable";
Apply3DSecureType["APPLY"] = "Apply";
})(Apply3DSecureType = exports.Apply3DSecureType || (exports.Apply3DSecureType = {}));