import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Filter to follow-ups from incidents of the given mode. If not set, only follow-ups from `standard` and `retrospective` incidents are returned */ export declare const FollowUpsV2NumberListQueryParamIncidentMode: { readonly Standard: "standard"; readonly Retrospective: "retrospective"; readonly Test: "test"; readonly Tutorial: "tutorial"; readonly Stream: "stream"; }; /** * Filter to follow-ups from incidents of the given mode. If not set, only follow-ups from `standard` and `retrospective` incidents are returned */ export type FollowUpsV2NumberListQueryParamIncidentMode = ClosedEnum; export type FollowUpsV2NumberListRequest = { /** * Find follow-ups related to this incident */ incidentId?: string | undefined; /** * Filter to follow-ups from incidents of the given mode. If not set, only follow-ups from `standard` and `retrospective` incidents are returned */ incidentMode?: FollowUpsV2NumberListQueryParamIncidentMode | undefined; }; /** @internal */ export declare const FollowUpsV2NumberListQueryParamIncidentMode$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FollowUpsV2NumberListQueryParamIncidentMode$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 FollowUpsV2NumberListQueryParamIncidentMode$ { /** @deprecated use `FollowUpsV2NumberListQueryParamIncidentMode$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Standard: "standard"; readonly Retrospective: "retrospective"; readonly Test: "test"; readonly Tutorial: "tutorial"; readonly Stream: "stream"; }>; /** @deprecated use `FollowUpsV2NumberListQueryParamIncidentMode$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Standard: "standard"; readonly Retrospective: "retrospective"; readonly Test: "test"; readonly Tutorial: "tutorial"; readonly Stream: "stream"; }>; } /** @internal */ export declare const FollowUpsV2NumberListRequest$inboundSchema: z.ZodType; /** @internal */ export type FollowUpsV2NumberListRequest$Outbound = { incident_id?: string | undefined; incident_mode?: string | undefined; }; /** @internal */ export declare const FollowUpsV2NumberListRequest$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 FollowUpsV2NumberListRequest$ { /** @deprecated use `FollowUpsV2NumberListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FollowUpsV2NumberListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FollowUpsV2NumberListRequest$Outbound` instead. */ type Outbound = FollowUpsV2NumberListRequest$Outbound; } //# sourceMappingURL=followupsv2numberlist.d.ts.map