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