/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type EscalationsV2NumberShowPathRequest = { /** * Unique identifier for this escalation path. */ id: string; }; /** @internal */ export const EscalationsV2NumberShowPathRequest$inboundSchema: z.ZodType< EscalationsV2NumberShowPathRequest, z.ZodTypeDef, unknown > = z.object({ id: z.string(), }); /** @internal */ export type EscalationsV2NumberShowPathRequest$Outbound = { id: string; }; /** @internal */ export const EscalationsV2NumberShowPathRequest$outboundSchema: z.ZodType< EscalationsV2NumberShowPathRequest$Outbound, z.ZodTypeDef, EscalationsV2NumberShowPathRequest > = z.object({ id: z.string(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace EscalationsV2NumberShowPathRequest$ { /** @deprecated use `EscalationsV2NumberShowPathRequest$inboundSchema` instead. */ export const inboundSchema = EscalationsV2NumberShowPathRequest$inboundSchema; /** @deprecated use `EscalationsV2NumberShowPathRequest$outboundSchema` instead. */ export const outboundSchema = EscalationsV2NumberShowPathRequest$outboundSchema; /** @deprecated use `EscalationsV2NumberShowPathRequest$Outbound` instead. */ export type Outbound = EscalationsV2NumberShowPathRequest$Outbound; }