/* * 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 ListResponseBody17 = { severities: Array; }; /** @internal */ export const ListResponseBody17$inboundSchema: z.ZodType< ListResponseBody17, z.ZodTypeDef, unknown > = z.object({ severities: z.array(SeverityV2$inboundSchema), }); /** @internal */ export type ListResponseBody17$Outbound = { severities: Array; }; /** @internal */ export const ListResponseBody17$outboundSchema: z.ZodType< ListResponseBody17$Outbound, z.ZodTypeDef, ListResponseBody17 > = z.object({ severities: z.array(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 ListResponseBody17$ { /** @deprecated use `ListResponseBody17$inboundSchema` instead. */ export const inboundSchema = ListResponseBody17$inboundSchema; /** @deprecated use `ListResponseBody17$outboundSchema` instead. */ export const outboundSchema = ListResponseBody17$outboundSchema; /** @deprecated use `ListResponseBody17$Outbound` instead. */ export type Outbound = ListResponseBody17$Outbound; }