import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { ExternalIssueReferenceV2, ExternalIssueReferenceV2$Outbound } from "./externalissuereferencev2.js"; import { FollowUpPriorityV2, FollowUpPriorityV2$Outbound } from "./followuppriorityv2.js"; import { UserV1, UserV1$Outbound } from "./userv1.js"; /** * Status of the follow-up */ export declare const FollowUpV2Status: { readonly Outstanding: "outstanding"; readonly Completed: "completed"; readonly Deleted: "deleted"; readonly NotDoing: "not_doing"; }; /** * Status of the follow-up */ export type FollowUpV2Status = ClosedEnum; export type FollowUpV2 = { assignee?: UserV1 | undefined; /** * When the follow-up was completed */ completedAt?: Date | undefined; /** * When the follow-up was created */ createdAt: Date; /** * Description of the follow-up */ description?: string | undefined; externalIssueReference?: ExternalIssueReferenceV2 | undefined; /** * Unique identifier for the follow-up */ id: string; /** * Unique identifier of the incident the follow-up belongs to */ incidentId: string; priority?: FollowUpPriorityV2 | undefined; /** * Status of the follow-up */ status: FollowUpV2Status; /** * Title of the follow-up */ title: string; /** * When the follow-up was last updated */ updatedAt: Date; }; /** @internal */ export declare const FollowUpV2Status$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FollowUpV2Status$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 FollowUpV2Status$ { /** @deprecated use `FollowUpV2Status$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Outstanding: "outstanding"; readonly Completed: "completed"; readonly Deleted: "deleted"; readonly NotDoing: "not_doing"; }>; /** @deprecated use `FollowUpV2Status$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Outstanding: "outstanding"; readonly Completed: "completed"; readonly Deleted: "deleted"; readonly NotDoing: "not_doing"; }>; } /** @internal */ export declare const FollowUpV2$inboundSchema: z.ZodType; /** @internal */ export type FollowUpV2$Outbound = { assignee?: UserV1$Outbound | undefined; completed_at?: string | undefined; created_at: string; description?: string | undefined; external_issue_reference?: ExternalIssueReferenceV2$Outbound | undefined; id: string; incident_id: string; priority?: FollowUpPriorityV2$Outbound | undefined; status: string; title: string; updated_at: string; }; /** @internal */ export declare const FollowUpV2$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 FollowUpV2$ { /** @deprecated use `FollowUpV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FollowUpV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FollowUpV2$Outbound` instead. */ type Outbound = FollowUpV2$Outbound; } //# sourceMappingURL=followupv2.d.ts.map