/** * Serializer for top content information. */ export type TopContent = { /** * Course identifier */ course_identifier: string; /** * Name of the course. */ course_name: string; /** * Time spent on this course in seconds */ time_spent_seconds: number; };