import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ActivityNotificationResponseDto } from "./activitynotificationresponsedto.js"; export type ActivitiesResponseDto = { /** * Indicates if there are more activities in the result set */ hasMore: boolean; /** * Array of activity notifications */ data: Array; /** * Page size of the activities */ pageSize: number; /** * Current page of the activities */ page: number; }; /** @internal */ export declare const ActivitiesResponseDto$inboundSchema: z.ZodType; export declare function activitiesResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activitiesresponsedto.d.ts.map