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