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