/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CoursePoint } from './CoursePoint'; import type { ResourcePoint } from './ResourcePoint'; import type { Skill } from './Skill'; export type UserSkill = { skill: Skill; /** * Courses with skill and associated points */ courses: Array; /** * Resources with skill and associated points */ resources: Array; /** * Total points for skill */ readonly total_points: number; /** * Percentile of points for user. */ percentile?: number; };