import * as z from "zod"; import { ScheduleLayerCreatePayloadV2, ScheduleLayerCreatePayloadV2$Outbound } from "./schedulelayercreatepayloadv2.js"; import { ScheduleRotationHandoverV2, ScheduleRotationHandoverV2$Outbound } from "./schedulerotationhandoverv2.js"; import { UserReferencePayloadV1, UserReferencePayloadV1$Outbound } from "./userreferencepayloadv1.js"; import { WeekdayIntervalV2, WeekdayIntervalV2$Outbound } from "./weekdayintervalv2.js"; export type ScheduleRotationCreatePayloadV2 = { effectiveFrom?: Date | undefined; handoverStartAt?: Date | undefined; handovers?: Array | undefined; /** * Unique identifier of the rotation */ id?: string | undefined; layers?: Array | undefined; /** * Name of the rotation */ name: string; users?: Array | undefined; workingInterval?: Array | undefined; }; /** @internal */ export declare const ScheduleRotationCreatePayloadV2$inboundSchema: z.ZodType; /** @internal */ export type ScheduleRotationCreatePayloadV2$Outbound = { effective_from?: string | undefined; handover_start_at?: string | undefined; handovers?: Array | undefined; id?: string | undefined; layers?: Array | undefined; name: string; users?: Array | undefined; working_interval?: Array | undefined; }; /** @internal */ export declare const ScheduleRotationCreatePayloadV2$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 ScheduleRotationCreatePayloadV2$ { /** @deprecated use `ScheduleRotationCreatePayloadV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScheduleRotationCreatePayloadV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ScheduleRotationCreatePayloadV2$Outbound` instead. */ type Outbound = ScheduleRotationCreatePayloadV2$Outbound; } //# sourceMappingURL=schedulerotationcreatepayloadv2.d.ts.map