/** * 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 { ProgramLightDtoApi } from './programLightDto'; export interface QuestionStatsProgramDtoApi { /** * This field is deprecated */ id: string; /** * This field is deprecated */ label: string; program: ProgramLightDtoApi; /** * The total number of guesses sent by the user. */ totalGuessesCount?: number; /** * The number of guesses sent by the user that are valid. */ validGuessesCount?: number; /** * The \"score\" of the user. (number of valid guesses / total number of guesses) */ score?: number; }