/** * TrainX API * ### The TrainX API documentation In order to use the Swagger, please retrieve your JWT at the following link: [https://trainx.getcockpit.io/jwt](https://trainx.getcockpit.io/jwt) and add it to the bearer field in the authorization section. * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { UserLightDtoApi } from './userLightDto'; export interface ProgramStatsTeamUserDtoApi { user: UserLightDtoApi; /** * The progress of the user within the program. */ progress?: number; /** * The score of the user within the program. */ score?: number; /** * The date at which the user has completed the program. */ completedAt?: Date; /** * True if the user has completed and validated the program. */ validatedProgram: boolean; /** * Number of questions answered by the user. */ answeredQuestionsCount: number; /** * Date of the last launch of the program. */ lastLaunchedAt?: Date; }