/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Recurring weekly schedule. days[] uses tokens (mon/tue/wed/thu/fri/sat/sun); startHour/endHour are local 24h numbers. Single type used by Calendar read/create/update so PATCH callers get the same autocomplete as readers. * @export * @interface CalendarWorkingHoursSchema */ export interface CalendarWorkingHoursSchema { /** * * @type {string} * @memberof CalendarWorkingHoursSchema */ timezone?: string; /** * * @type {Array} * @memberof CalendarWorkingHoursSchema */ days?: Array; /** * * @type {number} * @memberof CalendarWorkingHoursSchema */ startHour?: number; /** * * @type {number} * @memberof CalendarWorkingHoursSchema */ endHour?: number; } /** * @export */ export declare const CalendarWorkingHoursSchemaDaysEnum: { readonly Mon: "mon"; readonly Tue: "tue"; readonly Wed: "wed"; readonly Thu: "thu"; readonly Fri: "fri"; readonly Sat: "sat"; readonly Sun: "sun"; }; export type CalendarWorkingHoursSchemaDaysEnum = typeof CalendarWorkingHoursSchemaDaysEnum[keyof typeof CalendarWorkingHoursSchemaDaysEnum]; /** * Check if a given object implements the CalendarWorkingHoursSchema interface. */ export declare function instanceOfCalendarWorkingHoursSchema(value: object): value is CalendarWorkingHoursSchema; export declare function CalendarWorkingHoursSchemaFromJSON(json: any): CalendarWorkingHoursSchema; export declare function CalendarWorkingHoursSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CalendarWorkingHoursSchema; export declare function CalendarWorkingHoursSchemaToJSON(json: any): CalendarWorkingHoursSchema; export declare function CalendarWorkingHoursSchemaToJSONTyped(value?: CalendarWorkingHoursSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CalendarWorkingHoursSchema.d.ts.map