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 SubscribersV1ControllerGetNotificationsFeedRequest = { subscriberId: string; page?: number | undefined; limit?: number | undefined; read?: boolean | undefined; seen?: boolean | undefined; /** * Base64 encoded string of the partial payload JSON object */ payload?: string | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersV1ControllerGetNotificationsFeedResponse = { headers: { [k: string]: Array; }; result: components.FeedResponseDto; }; /** @internal */ export type SubscribersV1ControllerGetNotificationsFeedRequest$Outbound = { subscriberId: string; page?: number | undefined; limit: number; read?: boolean | undefined; seen?: boolean | undefined; payload?: string | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersV1ControllerGetNotificationsFeedRequest$outboundSchema: z.ZodType; export declare function subscribersV1ControllerGetNotificationsFeedRequestToJSON(subscribersV1ControllerGetNotificationsFeedRequest: SubscribersV1ControllerGetNotificationsFeedRequest): string; /** @internal */ export declare const SubscribersV1ControllerGetNotificationsFeedResponse$inboundSchema: z.ZodType; export declare function subscribersV1ControllerGetNotificationsFeedResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscribersv1controllergetnotificationsfeed.d.ts.map