import * as z from "zod"; import { EscalationPathNodeV2, EscalationPathNodeV2$Outbound } from "./escalationpathnodev2.js"; import { WeekdayIntervalConfigV2, WeekdayIntervalConfigV2$Outbound } from "./weekdayintervalconfigv2.js"; export type EscalationPathV2 = { /** * Unique identifier for this escalation path. */ id: string; /** * 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 EscalationPathV2$inboundSchema: z.ZodType; /** @internal */ export type EscalationPathV2$Outbound = { id: string; name: string; path: Array; working_hours?: Array | undefined; }; /** @internal */ export declare const EscalationPathV2$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 EscalationPathV2$ { /** @deprecated use `EscalationPathV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EscalationPathV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EscalationPathV2$Outbound` instead. */ type Outbound = EscalationPathV2$Outbound; } //# sourceMappingURL=escalationpathv2.d.ts.map