/** * 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 { TagStatsLightDtoApi } from './tagStatsLightDto'; import { TeamDtoApi } from './teamDto'; import { ProgramStatsLightDtoApi } from './programStatsLightDto'; export interface TeamStatsDtoApi { /** * This field is deprecated */ id: string; /** * This field is deprecated */ label: string; team: TeamDtoApi; /** * the total number of questions pushed to the team. */ questionsPushedCount?: number; /** * the total number of comments made by the team. */ commentsCount?: number; /** * the total number of questions submitted by the team. */ questionsSubmittedCount?: number; /** * the tags stats associated to the questions pushed to the team. */ tags?: Array; /** * the programs stats associated to the team. */ programs?: 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; }