/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { SeverityV2, SeverityV2$inboundSchema, SeverityV2$Outbound, SeverityV2$outboundSchema, } from "./severityv2.js"; export type ShowResponseBody15 = { severity: SeverityV2; }; /** @internal */ export const ShowResponseBody15$inboundSchema: z.ZodType< ShowResponseBody15, z.ZodTypeDef, unknown > = z.object({ severity: SeverityV2$inboundSchema, }); /** @internal */ export type ShowResponseBody15$Outbound = { severity: SeverityV2$Outbound; }; /** @internal */ export const ShowResponseBody15$outboundSchema: z.ZodType< ShowResponseBody15$Outbound, z.ZodTypeDef, ShowResponseBody15 > = z.object({ severity: SeverityV2$outboundSchema, }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace ShowResponseBody15$ { /** @deprecated use `ShowResponseBody15$inboundSchema` instead. */ export const inboundSchema = ShowResponseBody15$inboundSchema; /** @deprecated use `ShowResponseBody15$outboundSchema` instead. */ export const outboundSchema = ShowResponseBody15$outboundSchema; /** @deprecated use `ShowResponseBody15$Outbound` instead. */ export type Outbound = ShowResponseBody15$Outbound; }