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