@hipay/hipay-enterprise-sdk-nodejs
Version:
The HiPay Enterprise SDK for NodeJS is a library for developers who want to integrate HiPay Enterprise payment methods to any NodeJS platform.
18 lines (16 loc) • 558 B
JavaScript
;
/**
* Security Code Type constant values
*
* NONE no security code. Ex.: Maestro
* NOT_APPLICABLE Security code not applicable. Ex.: CMC (for domestic networks or specific issuer payment products, we don't know if there's a security code as it depends on the card scheme)
* CVV Type CVV. EX.: Visa, MasterCard
* CID Type cid. Ex.: American Express
* @type {{NOT_APPLICABLE: String, CVV: String, NONE: String, CID: String}}
*/
module.exports = {
NONE: 'none',
NOT_APPLICABLE: 'not_applicable',
CVV: 'cvv',
CID: 'cid'
};