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