/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type CreateRequestBody13 = { /** * Description of the severity */ description: string; /** * Human readable name of the severity */ name: string; /** * Rank to help sort severities (lower numbers are less severe) */ rank?: number | undefined; }; /** @internal */ export const CreateRequestBody13$inboundSchema: z.ZodType< CreateRequestBody13, z.ZodTypeDef, unknown > = z.object({ description: z.string(), name: z.string(), rank: z.number().int().optional(), }); /** @internal */ export type CreateRequestBody13$Outbound = { description: string; name: string; rank?: number | undefined; }; /** @internal */ export const CreateRequestBody13$outboundSchema: z.ZodType< CreateRequestBody13$Outbound, z.ZodTypeDef, CreateRequestBody13 > = z.object({ description: z.string(), name: z.string(), rank: z.number().int().optional(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace CreateRequestBody13$ { /** @deprecated use `CreateRequestBody13$inboundSchema` instead. */ export const inboundSchema = CreateRequestBody13$inboundSchema; /** @deprecated use `CreateRequestBody13$outboundSchema` instead. */ export const outboundSchema = CreateRequestBody13$outboundSchema; /** @deprecated use `CreateRequestBody13$Outbound` instead. */ export type Outbound = CreateRequestBody13$Outbound; }