import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetAnalyticsWebinarsWebinarIdHistogramsRequest = { /** * The hashed ID of the webinar. */ webinarId: string; }; /** * Success response with webinar histogram data. */ export type GetAnalyticsWebinarsWebinarIdHistogramsResponse = { /** * Per-time-bucket attendee counts. Each element represents the number of attendees in a 10-second bucket. */ attendeesHistogram?: Array | undefined; /** * Per-time-bucket chat message counts. Each element represents the number of chat messages in a 10-second bucket. */ chatHistogram?: Array | undefined; /** * Per-time-bucket visual focus counts. Each element represents the number of attendees with the tab focused in a 10-second bucket. */ visualFocusPlayedHistogram?: Array | undefined; }; /** @internal */ export type GetAnalyticsWebinarsWebinarIdHistogramsRequest$Outbound = { webinarId: string; }; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdHistogramsRequest$outboundSchema: z.ZodType; export declare function getAnalyticsWebinarsWebinarIdHistogramsRequestToJSON(getAnalyticsWebinarsWebinarIdHistogramsRequest: GetAnalyticsWebinarsWebinarIdHistogramsRequest): string; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdHistogramsResponse$inboundSchema: z.ZodType; export declare function getAnalyticsWebinarsWebinarIdHistogramsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getanalyticswebinarswebinaridhistograms.d.ts.map