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 SubscribersControllerMarkAllNotificationsAsReadRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; updateAllSubscriberNotificationsDto: components.UpdateAllSubscriberNotificationsDto; }; export type SubscribersControllerMarkAllNotificationsAsReadResponse = { headers: { [k: string]: Array; }; }; /** @internal */ export type SubscribersControllerMarkAllNotificationsAsReadRequest$Outbound = { subscriberId: string; "idempotency-key"?: string | undefined; UpdateAllSubscriberNotificationsDto: components.UpdateAllSubscriberNotificationsDto$Outbound; }; /** @internal */ export declare const SubscribersControllerMarkAllNotificationsAsReadRequest$outboundSchema: z.ZodType; export declare function subscribersControllerMarkAllNotificationsAsReadRequestToJSON(subscribersControllerMarkAllNotificationsAsReadRequest: SubscribersControllerMarkAllNotificationsAsReadRequest): string; /** @internal */ export declare const SubscribersControllerMarkAllNotificationsAsReadResponse$inboundSchema: z.ZodType; export declare function subscribersControllerMarkAllNotificationsAsReadResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollermarkallnotificationsasread.d.ts.map