@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.
21 lines (19 loc) • 512 B
JavaScript
;
/**
* Operation type constant values
*
* CAPTURE operation capture
* REFUND operation refund
* CANCEL operation cancel
* ACCEPT_CHALLENGE operation acceptChallenge
* DENY_CHALLENGE operation denyChallenge
*
* @type {{DENY_CHALLENGE: String, REFUND: String, CANCEL: String, ACCEPT_CHALLENGE: String, CAPTURE: String}}
*/
module.exports = {
CAPTURE: 'capture',
REFUND: 'refund',
CANCEL: 'cancel',
ACCEPT_CHALLENGE: 'acceptChallenge',
DENY_CHALLENGE: 'denyChallenge'
};