export type UserEdxMemory = { readonly id: number; readonly username: string; /** * edX user ID */ student: number; course_id: string; /** * The course data to be stored. This includes the current page and the blocks that have been visited. */ data?: any; readonly date_created: string; readonly last_modified: string; };