import * as z from "zod"; import { ScheduleConfigCreatePayloadV2, ScheduleConfigCreatePayloadV2$Outbound } from "./scheduleconfigcreatepayloadv2.js"; import { ScheduleHolidaysPublicConfigV2, ScheduleHolidaysPublicConfigV2$Outbound } from "./scheduleholidayspublicconfigv2.js"; export type ScheduleCreatePayloadV2 = { /** * Annotations that can track metadata about the schedule */ annotations?: { [k: string]: string; } | undefined; config?: ScheduleConfigCreatePayloadV2 | undefined; holidaysPublicConfig?: ScheduleHolidaysPublicConfigV2 | undefined; /** * Name of the schedule */ name?: string | undefined; /** * Timezone of the schedule */ timezone?: string | undefined; }; /** @internal */ export declare const ScheduleCreatePayloadV2$inboundSchema: z.ZodType; /** @internal */ export type ScheduleCreatePayloadV2$Outbound = { annotations?: { [k: string]: string; } | undefined; config?: ScheduleConfigCreatePayloadV2$Outbound | undefined; holidays_public_config?: ScheduleHolidaysPublicConfigV2$Outbound | undefined; name?: string | undefined; timezone?: string | undefined; }; /** @internal */ export declare const ScheduleCreatePayloadV2$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 ScheduleCreatePayloadV2$ { /** @deprecated use `ScheduleCreatePayloadV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScheduleCreatePayloadV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ScheduleCreatePayloadV2$Outbound` instead. */ type Outbound = ScheduleCreatePayloadV2$Outbound; } //# sourceMappingURL=schedulecreatepayloadv2.d.ts.map