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 SubscribersV1ControllerGetUnseenCountRequest = { subscriberId: string; /** * Indicates whether to count seen notifications. */ seen?: boolean | undefined; /** * The maximum number of notifications to return. */ limit?: number | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersV1ControllerGetUnseenCountResponse = { headers: { [k: string]: Array; }; result: components.UnseenCountResponse; }; /** @internal */ export type SubscribersV1ControllerGetUnseenCountRequest$Outbound = { subscriberId: string; seen: boolean; limit: number; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersV1ControllerGetUnseenCountRequest$outboundSchema: z.ZodType; export declare function subscribersV1ControllerGetUnseenCountRequestToJSON(subscribersV1ControllerGetUnseenCountRequest: SubscribersV1ControllerGetUnseenCountRequest): string; /** @internal */ export declare const SubscribersV1ControllerGetUnseenCountResponse$inboundSchema: z.ZodType; export declare function subscribersV1ControllerGetUnseenCountResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscribersv1controllergetunseencount.d.ts.map