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 SubscribersControllerMarkNotificationAsUnreadRequest = { /** * 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 SubscribersControllerMarkNotificationAsUnreadResponse = { headers: { [k: string]: Array; }; result: components.InboxNotificationDto; }; /** @internal */ export type SubscribersControllerMarkNotificationAsUnreadRequest$Outbound = { subscriberId: string; notificationId: string; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerMarkNotificationAsUnreadRequest$outboundSchema: z.ZodType; export declare function subscribersControllerMarkNotificationAsUnreadRequestToJSON(subscribersControllerMarkNotificationAsUnreadRequest: SubscribersControllerMarkNotificationAsUnreadRequest): string; /** @internal */ export declare const SubscribersControllerMarkNotificationAsUnreadResponse$inboundSchema: z.ZodType; export declare function subscribersControllerMarkNotificationAsUnreadResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollermarknotificationasunread.d.ts.map