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