import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Whether the status should be considered 'live' (now renamed to active), 'learning' (now renamed to post-incident) or 'closed'. The triage and declined statuses cannot be created or modified. */ export declare const CreateRequestBody9Category: { readonly Live: "live"; readonly Learning: "learning"; readonly Closed: "closed"; }; /** * Whether the status should be considered 'live' (now renamed to active), 'learning' (now renamed to post-incident) or 'closed'. The triage and declined statuses cannot be created or modified. */ export type CreateRequestBody9Category = ClosedEnum; export type CreateRequestBody9 = { /** * Whether the status should be considered 'live' (now renamed to active), 'learning' (now renamed to post-incident) or 'closed'. The triage and declined statuses cannot be created or modified. */ category: CreateRequestBody9Category; /** * Rich text description of the incident status */ description: string; /** * Unique name of this status */ name: string; }; /** @internal */ export declare const CreateRequestBody9Category$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CreateRequestBody9Category$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CreateRequestBody9Category$ { /** @deprecated use `CreateRequestBody9Category$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Live: "live"; readonly Learning: "learning"; readonly Closed: "closed"; }>; /** @deprecated use `CreateRequestBody9Category$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Live: "live"; readonly Learning: "learning"; readonly Closed: "closed"; }>; } /** @internal */ export declare const CreateRequestBody9$inboundSchema: z.ZodType; /** @internal */ export type CreateRequestBody9$Outbound = { category: string; description: string; name: string; }; /** @internal */ export declare const CreateRequestBody9$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 CreateRequestBody9$ { /** @deprecated use `CreateRequestBody9$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody9$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody9$Outbound` instead. */ type Outbound = CreateRequestBody9$Outbound; } //# sourceMappingURL=createrequestbody9.d.ts.map