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