@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) • 455 B
JavaScript
;
/**
* Constant values of Purchase Indicator
*
* Purchase Indicator is used to check if the merchandise is already available, or if it this is a preorder
*
* MERCHANDISE_AVAILABLE: The merchandise is in stock
* FUTURE_AVAILABILITY: The merchandise is not yet available
*
* @type {{MERCHANDISE_AVAILABLE: Number, FUTURE_AVAILABILITY: Number}}
*/
module.exports = {
MERCHANDISE_AVAILABLE: 1,
FUTURE_AVAILABILITY: 2
};