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