/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { LearnerAnalyticsResult } from './LearnerAnalyticsResult'; import type { LearnerSummary } from './LearnerSummary'; import type { OvertimeDataPoint } from './OvertimeDataPoint'; import type { Pagination } from './Pagination'; import type { UserInfo } from './UserInfo'; /** * Unified response serializer for learner analytics endpoint. */ export type LearnerAnalyticsResponse = { user: UserInfo; summary: LearnerSummary; results: Array; pagination: Pagination; /** * Time spent over time data (when overtime=true) */ overtime?: Array; generated_at: string; };