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.

20 lines (17 loc) 396 B
'use strict'; /** * Operation Type constants values * * CAPTURE Operation tyoe is capture * CREDIT Operation tyoe is credit * REFUND Operation tyoe is refund * CHGBCK Operation tyoe is chgbck * * @type {{CAPTURE: String, CREDIT: String, REFUND: String, CHGBCK: String }} */ module.exports = { CAPTURE: 'CAPTURE', CREDIT: 'CREDIT', REFUND: 'REFUND', CHGBCK: 'CHGBCK' };