/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { LearnerMetrics } from './LearnerMetrics'; /** * Serializer for individual learner in the list. */ export type LearnerListItem = { /** * User ID */ user_id: number; /** * Username */ username: string | null; /** * Email address */ email: string | null; /** * Display name */ name: string | null; /** * Whether user is active */ is_active: boolean; /** * Platform ID */ platform_id: number; /** * Platform name */ platform_name: string | null; /** * Platform key */ platform_key: string | null; /** * Learner metrics */ metrics: LearnerMetrics; /** * First activity date */ first_activity: string | null; /** * Last activity date */ last_activity: string | null; };