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