/* * 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 ListResponseBody10 = { incidentStatuses: Array; }; /** @internal */ export const ListResponseBody10$inboundSchema: z.ZodType< ListResponseBody10, z.ZodTypeDef, unknown > = z.object({ incident_statuses: z.array(IncidentStatusV1$inboundSchema), }).transform((v) => { return remap$(v, { "incident_statuses": "incidentStatuses", }); }); /** @internal */ export type ListResponseBody10$Outbound = { incident_statuses: Array; }; /** @internal */ export const ListResponseBody10$outboundSchema: z.ZodType< ListResponseBody10$Outbound, z.ZodTypeDef, ListResponseBody10 > = z.object({ incidentStatuses: z.array(IncidentStatusV1$outboundSchema), }).transform((v) => { return remap$(v, { incidentStatuses: "incident_statuses", }); }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace ListResponseBody10$ { /** @deprecated use `ListResponseBody10$inboundSchema` instead. */ export const inboundSchema = ListResponseBody10$inboundSchema; /** @deprecated use `ListResponseBody10$outboundSchema` instead. */ export const outboundSchema = ListResponseBody10$outboundSchema; /** @deprecated use `ListResponseBody10$Outbound` instead. */ export type Outbound = ListResponseBody10$Outbound; }