/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Institution } from './Institution'; import type { UserInfo } from './UserInfo'; export type Education = { readonly id: number; /** * edX user ID */ readonly user: number; readonly user_info: UserInfo; readonly institution: Institution; institution_id: number; degree?: string | null; field_of_study?: string | null; start_date: string; end_date?: string | null; grade?: string | null; activities?: string | null; description?: string | null; /** * Metadata */ data?: any; /** * Metadata */ metadata?: any; created_at?: string; readonly updated_at: string; is_current?: boolean | null; };