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