@gobolt/models
Version:
This is a shared repository that includes models that should be shared across all BoxKnight services. Do not include anything for the controller, service or repository layers of your application in this package.
15 lines • 577 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RateShowingOptionType = void 0;
var RateShowingOptionType;
(function (RateShowingOptionType) {
/**
* Always show same-day/one-day even after cutoff
*/
RateShowingOptionType["ALWAYSSHOWSAMEDAY"] = "ALWAYSSHOWSAMEDAY";
/**
* Don't show sameday after cutoff
*/
RateShowingOptionType["SAMEDAYCUTOFF"] = "SAMEDAYCUTOFF";
})(RateShowingOptionType || (exports.RateShowingOptionType = RateShowingOptionType = {}));
//# sourceMappingURL=rateShowingOptionType.js.map