/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type EscalationsV2NumberDestroyPathRequest = { /** * Unique identifier for this escalation path. */ id: string; }; /** @internal */ export const EscalationsV2NumberDestroyPathRequest$inboundSchema: z.ZodType< EscalationsV2NumberDestroyPathRequest, z.ZodTypeDef, unknown > = z.object({ id: z.string(), }); /** @internal */ export type EscalationsV2NumberDestroyPathRequest$Outbound = { id: string; }; /** @internal */ export const EscalationsV2NumberDestroyPathRequest$outboundSchema: z.ZodType< EscalationsV2NumberDestroyPathRequest$Outbound, z.ZodTypeDef, EscalationsV2NumberDestroyPathRequest > = 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 EscalationsV2NumberDestroyPathRequest$ { /** @deprecated use `EscalationsV2NumberDestroyPathRequest$inboundSchema` instead. */ export const inboundSchema = EscalationsV2NumberDestroyPathRequest$inboundSchema; /** @deprecated use `EscalationsV2NumberDestroyPathRequest$outboundSchema` instead. */ export const outboundSchema = EscalationsV2NumberDestroyPathRequest$outboundSchema; /** @deprecated use `EscalationsV2NumberDestroyPathRequest$Outbound` instead. */ export type Outbound = EscalationsV2NumberDestroyPathRequest$Outbound; }