/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type IncidentAttachmentsV1NumberDeleteRequest = { /** * Unique identifier of this incident membership */ id: string; }; /** @internal */ export const IncidentAttachmentsV1NumberDeleteRequest$inboundSchema: z.ZodType< IncidentAttachmentsV1NumberDeleteRequest, z.ZodTypeDef, unknown > = z.object({ id: z.string(), }); /** @internal */ export type IncidentAttachmentsV1NumberDeleteRequest$Outbound = { id: string; }; /** @internal */ export const IncidentAttachmentsV1NumberDeleteRequest$outboundSchema: z.ZodType< IncidentAttachmentsV1NumberDeleteRequest$Outbound, z.ZodTypeDef, IncidentAttachmentsV1NumberDeleteRequest > = 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 IncidentAttachmentsV1NumberDeleteRequest$ { /** @deprecated use `IncidentAttachmentsV1NumberDeleteRequest$inboundSchema` instead. */ export const inboundSchema = IncidentAttachmentsV1NumberDeleteRequest$inboundSchema; /** @deprecated use `IncidentAttachmentsV1NumberDeleteRequest$outboundSchema` instead. */ export const outboundSchema = IncidentAttachmentsV1NumberDeleteRequest$outboundSchema; /** @deprecated use `IncidentAttachmentsV1NumberDeleteRequest$Outbound` instead. */ export type Outbound = IncidentAttachmentsV1NumberDeleteRequest$Outbound; }