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