@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.
25 lines (23 loc) • 775 B
JavaScript
;
/**
* Debit Agreement Status constants values
*
* AVAILABLE Debit Agreement is in status available
* CREATED Debit Agreement is in status created
* ERROR Debit Agreement is in status error
* INCOMPLETE Debit Agreement is in status incomplete
* PENDING Debit Agreement is in status pending
* SUSPENDED Debit Agreement is in status suspended
* TERMINATED Debit Agreement is in status terminated
*
* @type {{AVAILABLE: String, CREATED: String, ERROR: String, INCOMPLETE: String, PENDING: String, SUSPENDED: String, TERMINATED: String}}
*/
module.exports = {
AVAILABLE: 'available',
CREATED: 'created',
ERROR: 'error',
INCOMPLETE: 'incomplete',
PENDING: 'pending',
SUSPENDED: 'suspended',
TERMINATED: 'terminated'
};