import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The type of action (primary or secondary) */ export declare const PathParamActionType: { readonly Primary: "primary"; readonly Secondary: "secondary"; }; /** * The type of action (primary or secondary) */ export type PathParamActionType = ClosedEnum; export type SubscribersControllerRevertNotificationActionRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * The identifier of the notification */ notificationId: string; /** * The type of action (primary or secondary) */ actionType: PathParamActionType; /** * Context keys for filtering */ contextKeys?: Array | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersControllerRevertNotificationActionResponse = { headers: { [k: string]: Array; }; result: components.InboxNotificationDto; }; /** @internal */ export declare const PathParamActionType$outboundSchema: z.ZodNativeEnum; /** @internal */ export type SubscribersControllerRevertNotificationActionRequest$Outbound = { subscriberId: string; notificationId: string; actionType: string; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerRevertNotificationActionRequest$outboundSchema: z.ZodType; export declare function subscribersControllerRevertNotificationActionRequestToJSON(subscribersControllerRevertNotificationActionRequest: SubscribersControllerRevertNotificationActionRequest): string; /** @internal */ export declare const SubscribersControllerRevertNotificationActionResponse$inboundSchema: z.ZodType; export declare function subscribersControllerRevertNotificationActionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollerrevertnotificationaction.d.ts.map