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