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.

18 lines (16 loc) 389 B
'use strict'; /** * Fraud screening Review constant values * * Constants review: The decision made when the overall risk result returns challenged. * ALLOWED Review allowed * PENDING Review pending * DENIED Review denied * * @type {{ALLOWED: String, PENDING: String, DENIED: String}} */ module.exports = { ALLOWED: 'ALLOWED', PENDING: 'PENDING', DENIED: 'DENIED', };