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 SubscribersControllerSnoozeNotificationRequest = { /** * 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; snoozeSubscriberNotificationDto: components.SnoozeSubscriberNotificationDto; }; export type SubscribersControllerSnoozeNotificationResponse = { headers: { [k: string]: Array; }; result: components.InboxNotificationDto; }; /** @internal */ export type SubscribersControllerSnoozeNotificationRequest$Outbound = { subscriberId: string; notificationId: string; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; SnoozeSubscriberNotificationDto: components.SnoozeSubscriberNotificationDto$Outbound; }; /** @internal */ export declare const SubscribersControllerSnoozeNotificationRequest$outboundSchema: z.ZodType; export declare function subscribersControllerSnoozeNotificationRequestToJSON(subscribersControllerSnoozeNotificationRequest: SubscribersControllerSnoozeNotificationRequest): string; /** @internal */ export declare const SubscribersControllerSnoozeNotificationResponse$inboundSchema: z.ZodType; export declare function subscribersControllerSnoozeNotificationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollersnoozenotification.d.ts.map