/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type LearnerInformationAPIData = { /** * learner username */ username: string; /** * learner Name */ name: string; /** * learner email */ email: string; /** * Registration Timestamp e.g 2022-05-05T00:00:00+00:00 */ date_joined: string; /** * Last Activity Timestamp e.g 2022-05-05T00:00:00+00:00 */ last_activity: string; /** * Total assessments attempted */ total_assessments?: number; /** * Total time spent in seconds */ total_time_spent?: number; /** * Total videos watched */ total_videos?: number; /** * Total courses completed */ course_completions?: number; time_spent_overtime?: Record; /** * last location - continent */ continent?: string; /** * last location - continent code */ continent_code?: string; /** * last location - country */ country?: string; /** * last location - country code */ country_code?: string; /** * last location - region */ region?: string; /** * last location - region code */ region_code?: string; /** * last location */ location?: string; /** * last location - city */ city?: string; /** * last known browser */ browser?: string; /** * last known operating system */ operating_system?: string; /** * last known browser resolution */ resolution?: string; };