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 SubscribersControllerMarkNotificationsAsSeenRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; markSubscriberNotificationsAsSeenDto: components.MarkSubscriberNotificationsAsSeenDto; }; export type SubscribersControllerMarkNotificationsAsSeenResponse = { headers: { [k: string]: Array; }; }; /** @internal */ export type SubscribersControllerMarkNotificationsAsSeenRequest$Outbound = { subscriberId: string; "idempotency-key"?: string | undefined; MarkSubscriberNotificationsAsSeenDto: components.MarkSubscriberNotificationsAsSeenDto$Outbound; }; /** @internal */ export declare const SubscribersControllerMarkNotificationsAsSeenRequest$outboundSchema: z.ZodType; export declare function subscribersControllerMarkNotificationsAsSeenRequestToJSON(subscribersControllerMarkNotificationsAsSeenRequest: SubscribersControllerMarkNotificationsAsSeenRequest): string; /** @internal */ export declare const SubscribersControllerMarkNotificationsAsSeenResponse$inboundSchema: z.ZodType; export declare function subscribersControllerMarkNotificationsAsSeenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollermarknotificationsasseen.d.ts.map