import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Person } from "./person.js"; export type PerUserAssistantInsight = { person?: Person | undefined; /** * Total number of chat messages sent by this user over the specified time period. */ numChatMessages?: number | undefined; /** * Total number of summarized items by this user over the specified time period. */ numSummarizations?: number | undefined; /** * Total number of AI Answers interacted with by this user over the specified time period. */ numAiAnswers?: number | undefined; /** * Total number of Gleanbot responses marked useful by this user over the specified time period. */ numGleanbotInteractions?: number | undefined; /** * Total number of days this user was active on the Assistant over the specified time period. */ numDaysActive?: number | undefined; }; /** @internal */ export declare const PerUserAssistantInsight$inboundSchema: z.ZodType; export declare function perUserAssistantInsightFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=peruserassistantinsight.d.ts.map