import * as z from "zod"; export type IncidentTimestampValuePayloadV2 = { /** * The id of the incident timestamp that this incident timestamp value is associated with. */ incidentTimestampId: string; /** * The current value of this timestamp, for this incident */ value?: Date | undefined; }; /** @internal */ export declare const IncidentTimestampValuePayloadV2$inboundSchema: z.ZodType; /** @internal */ export type IncidentTimestampValuePayloadV2$Outbound = { incident_timestamp_id: string; value?: string | undefined; }; /** @internal */ export declare const IncidentTimestampValuePayloadV2$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IncidentTimestampValuePayloadV2$ { /** @deprecated use `IncidentTimestampValuePayloadV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentTimestampValuePayloadV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentTimestampValuePayloadV2$Outbound` instead. */ type Outbound = IncidentTimestampValuePayloadV2$Outbound; } //# sourceMappingURL=incidenttimestampvaluepayloadv2.d.ts.map