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