import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NotificationFeedItemDto } from "./notificationfeeditemdto.js"; export type FeedResponseDto = { /** * Total number of notifications available. */ totalCount?: number | undefined; /** * Indicates if there are more notifications to load. */ hasMore: boolean; /** * Array of notifications returned in the response. */ data: Array; /** * The number of notifications returned in this response. */ pageSize: number; /** * The current page number of the notifications. */ page: number; }; /** @internal */ export declare const FeedResponseDto$inboundSchema: z.ZodType; export declare function feedResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=feedresponsedto.d.ts.map