import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Weekday this interval applies to */ export declare const Weekday: { readonly Monday: "monday"; readonly Tuesday: "tuesday"; readonly Wednesday: "wednesday"; readonly Thursday: "thursday"; readonly Friday: "friday"; readonly Saturday: "saturday"; readonly Sunday: "sunday"; }; /** * Weekday this interval applies to */ export type Weekday = ClosedEnum; export type ScheduleRotationWorkingIntervalUpdatePayloadV2 = { /** * End time of the interval, in 24hr format */ endTime?: string | undefined; /** * Start time of the interval, in 24hr format */ startTime?: string | undefined; /** * Weekday this interval applies to */ weekday?: Weekday | undefined; }; /** @internal */ export declare const Weekday$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Weekday$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Weekday$ { /** @deprecated use `Weekday$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Monday: "monday"; readonly Tuesday: "tuesday"; readonly Wednesday: "wednesday"; readonly Thursday: "thursday"; readonly Friday: "friday"; readonly Saturday: "saturday"; readonly Sunday: "sunday"; }>; /** @deprecated use `Weekday$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Monday: "monday"; readonly Tuesday: "tuesday"; readonly Wednesday: "wednesday"; readonly Thursday: "thursday"; readonly Friday: "friday"; readonly Saturday: "saturday"; readonly Sunday: "sunday"; }>; } /** @internal */ export declare const ScheduleRotationWorkingIntervalUpdatePayloadV2$inboundSchema: z.ZodType; /** @internal */ export type ScheduleRotationWorkingIntervalUpdatePayloadV2$Outbound = { end_time?: string | undefined; start_time?: string | undefined; weekday?: string | undefined; }; /** @internal */ export declare const ScheduleRotationWorkingIntervalUpdatePayloadV2$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ScheduleRotationWorkingIntervalUpdatePayloadV2$ { /** @deprecated use `ScheduleRotationWorkingIntervalUpdatePayloadV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScheduleRotationWorkingIntervalUpdatePayloadV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ScheduleRotationWorkingIntervalUpdatePayloadV2$Outbound` instead. */ type Outbound = ScheduleRotationWorkingIntervalUpdatePayloadV2$Outbound; } //# sourceMappingURL=schedulerotationworkingintervalupdatepayloadv2.d.ts.map