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 ActionType: { readonly Primary: "primary"; readonly Secondary: "secondary"; }; /** * The type of action (primary or secondary) */ export type ActionType = ClosedEnum; export type SubscribersControllerCompleteNotificationActionRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * The identifier of the notification */ notificationId: string; /** * The type of action (primary or secondary) */ actionType: ActionType; /** * Context keys for filtering */ contextKeys?: Array | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersControllerCompleteNotificationActionResponse = { headers: { [k: string]: Array; }; result: components.InboxNotificationDto; }; /** @internal */ export declare const ActionType$outboundSchema: z.ZodNativeEnum; /** @internal */ export type SubscribersControllerCompleteNotificationActionRequest$Outbound = { subscriberId: string; notificationId: string; actionType: string; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerCompleteNotificationActionRequest$outboundSchema: z.ZodType; export declare function subscribersControllerCompleteNotificationActionRequestToJSON(subscribersControllerCompleteNotificationActionRequest: SubscribersControllerCompleteNotificationActionRequest): string; /** @internal */ export declare const SubscribersControllerCompleteNotificationActionResponse$inboundSchema: z.ZodType; export declare function subscribersControllerCompleteNotificationActionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollercompletenotificationaction.d.ts.map