11 lines
337 B
JavaScript
11 lines
337 B
JavaScript
const paymentMethods = Object.freeze({
|
|
NONE: null,
|
|
PayNow: 'PayNow', // User selected the pay now and hasn't selected their payment method yet
|
|
PAY_AT_TIME_OF_SERVICE: 'PayAtTimeOfService',
|
|
CREDIT_CARD: 'CreditCard',
|
|
PAYPAL: 'Paypal',
|
|
AFTERPAY: 'Afterpay',
|
|
APPLEPAY: 'ApplePay'
|
|
});
|
|
|
|
export { paymentMethods };
|