11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
const AppointmentTypeStrings = {
|
|
IN_SHOP: "Inshop",
|
|
MOBILE: "Mobile",
|
|
DROP_OFF: "Dropoff",
|
|
};
|
|
|
|
const PREMIUM_TIME_SLOT_ID_FLAG = "-premium";
|
|
|
|
const PREMIUM_FEE_PART_TYPE = "EARLY BIRD";
|
|
|
|
export { AppointmentTypeStrings, PREMIUM_TIME_SLOT_ID_FLAG, PREMIUM_FEE_PART_TYPE };
|