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