import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubscribersControllerUnsnoozeNotificationRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * The identifier of the notification */ notificationId: string; /** * Context keys for filtering */ contextKeys?: Array | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersControllerUnsnoozeNotificationResponse = { headers: { [k: string]: Array; }; result: components.InboxNotificationDto; }; /** @internal */ export type SubscribersControllerUnsnoozeNotificationRequest$Outbound = { subscriberId: string; notificationId: string; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerUnsnoozeNotificationRequest$outboundSchema: z.ZodType; export declare function subscribersControllerUnsnoozeNotificationRequestToJSON(subscribersControllerUnsnoozeNotificationRequest: SubscribersControllerUnsnoozeNotificationRequest): string; /** @internal */ export declare const SubscribersControllerUnsnoozeNotificationResponse$inboundSchema: z.ZodType; export declare function subscribersControllerUnsnoozeNotificationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollerunsnoozenotification.d.ts.map