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) • 812 B
TypeScript
/**
* 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
*/
export declare enum Apply3DSecureType {
USE_MSP_SETTING = "UseMSPSetting",
FORCE = "Force",
DISABLE = "Disable",
APPLY = "Apply"
}