UNPKG

@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.

17 lines (15 loc) 408 B
'use strict'; /** * Constant values of Name Indicator * * Name Indicator is used to check the name between the delivery name and the card holder name * * IDENTICAL: The delivery name is the same as the card holder * DIFFERENT: The delivery name is different from the card holder * * @type {{IDENTICAL: Number, DIFFERENT: Number}} */ module.exports = { IDENTICAL: 1, DIFFERENT: 2 };