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