import * as z from "zod"; import { UserReferencePayloadV1, UserReferencePayloadV1$Outbound } from "./userreferencepayloadv1.js"; export type IncidentRoleAssignmentPayloadV2 = { assignee?: UserReferencePayloadV1 | undefined; /** * Unique ID of an incident role */ incidentRoleId: string; }; /** @internal */ export declare const IncidentRoleAssignmentPayloadV2$inboundSchema: z.ZodType; /** @internal */ export type IncidentRoleAssignmentPayloadV2$Outbound = { assignee?: UserReferencePayloadV1$Outbound | undefined; incident_role_id: string; }; /** @internal */ export declare const IncidentRoleAssignmentPayloadV2$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 IncidentRoleAssignmentPayloadV2$ { /** @deprecated use `IncidentRoleAssignmentPayloadV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentRoleAssignmentPayloadV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentRoleAssignmentPayloadV2$Outbound` instead. */ type Outbound = IncidentRoleAssignmentPayloadV2$Outbound; } //# sourceMappingURL=incidentroleassignmentpayloadv2.d.ts.map