/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type TimeSpentUpdateRequest = { /** * Time when the event occurred, ensure it is UTC (ISO 8601 format) */ timestamp: string; /** * Course ID to track time spent */ course_id?: string; /** * Mentor UUID to track time spent */ mentor_uuid?: string; /** * Block ID to track time spent */ block_id?: string; /** * Time spent in seconds */ count: number; /** * Source URL */ url: string; /** * Additional metadata */ metadata?: any; /** * Session UUID to track time spent */ session_uuid?: string; };