/** * 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 { QuestionStatsProgramDtoApi } from './questionStatsProgramDto'; import { QuestionDtoApi } from './questionDto'; import { TagLightDtoApi } from './tagLightDto'; import { QuestionStatsTeamDtoApi } from './questionStatsTeamDto'; export interface QuestionStatsDtoApi { /** * This field is deprecated */ id: string; /** * This field is deprecated */ label: string; question: QuestionDtoApi; /** * The number of users who have answered the question. */ usersCount: number; /** * The total number of users who have been asked to answer the question. */ totalUsersCount: number; /** * The stats for each programs within the question stats. */ programs?: Array; /** * The stats for each teams within the question stats. */ teams?: Array; tags?: Array; /** * 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; }