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