import * as z from "zod"; import { UserReferencePayloadV1, UserReferencePayloadV1$Outbound } from "./userreferencepayloadv1.js"; export type IncidentRoleAssignmentPayloadV1 = { assignee: UserReferencePayloadV1; /** * Unique ID of an incident role. Note that the 'reporter' role can only be assigned when creating an incident. */ incidentRoleId: string; }; /** @internal */ export declare const IncidentRoleAssignmentPayloadV1$inboundSchema: z.ZodType; /** @internal */ export type IncidentRoleAssignmentPayloadV1$Outbound = { assignee: UserReferencePayloadV1$Outbound; incident_role_id: string; }; /** @internal */ export declare const IncidentRoleAssignmentPayloadV1$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 IncidentRoleAssignmentPayloadV1$ { /** @deprecated use `IncidentRoleAssignmentPayloadV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentRoleAssignmentPayloadV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentRoleAssignmentPayloadV1$Outbound` instead. */ type Outbound = IncidentRoleAssignmentPayloadV1$Outbound; } //# sourceMappingURL=incidentroleassignmentpayloadv1.d.ts.map