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