DigitalConsumer.ISS/src/constants/payment-method-constants.js
2024-10-24 09:31:56 -05:00

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 };