/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { TimeDetailChild } from './TimeDetailChild'; export type TimeDetailData = { /** * Average time spent */ average_time: number; /** * Chapter name */ display_name: string; /** * Chapter Id */ id: string; children?: Array; /** * Total time spent */ total_time?: number; /** * Total users who accessed the chapter */ total_users?: number; };