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