You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
308 B
13 lines
308 B
6 years ago
|
const TRANSACTION_TYPE_CANCEL = 'cancel'
|
||
|
const TRANSACTION_TYPE_RETRY = 'retry'
|
||
|
const TRANSACTION_TYPE_STANDARD = 'standard'
|
||
|
|
||
|
const TRANSACTION_STATUS_APPROVED = 'approved'
|
||
|
|
||
|
module.exports = {
|
||
|
TRANSACTION_TYPE_CANCEL,
|
||
|
TRANSACTION_TYPE_RETRY,
|
||
|
TRANSACTION_TYPE_STANDARD,
|
||
|
TRANSACTION_STATUS_APPROVED,
|
||
|
}
|