import * as z from "zod"; import { EscalationPathNodePayloadV2, EscalationPathNodePayloadV2$Outbound } from "./escalationpathnodepayloadv2.js"; import { WeekdayIntervalConfigV2, WeekdayIntervalConfigV2$Outbound } from "./weekdayintervalconfigv2.js"; export type CreatePathRequestBody = { /** * The name of this escalation path, for the user's reference. */ name: string; /** * The nodes that form the levels and branches of this escalation path. */ path: Array; /** * The working hours for this escalation path. */ workingHours?: Array | undefined; }; /** @internal */ export declare const CreatePathRequestBody$inboundSchema: z.ZodType; /** @internal */ export type CreatePathRequestBody$Outbound = { name: string; path: Array; working_hours?: Array | undefined; }; /** @internal */ export declare const CreatePathRequestBody$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 CreatePathRequestBody$ { /** @deprecated use `CreatePathRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreatePathRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreatePathRequestBody$Outbound` instead. */ type Outbound = CreatePathRequestBody$Outbound; } //# sourceMappingURL=createpathrequestbody.d.ts.map