/** * 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 { CommentLightDtoApi } from './commentLightDto'; import { CompanyLightDtoApi } from './companyLightDto'; import { UserLightDtoApi } from './userLightDto'; import { ProgramLightDtoApi } from './programLightDto'; import { TagLightDtoApi } from './tagLightDto'; export interface NextQuestionDtoApi { pushAndNoGuess: boolean; title: string; type: NextQuestionDtoApiTypeEnumApi; tags?: Array; programs?: Array; answerType: NextQuestionDtoApiAnswerTypeEnumApi; answersAccepted: Array; answersWrong: Array; explanation?: string; link?: string; comments?: Array; coachId?: string; company: CompanyLightDtoApi; companyId: string; id: string; createdAt: Date; createdBy?: string; createdByUser?: UserLightDtoApi; updatedAt: Date; deletedAt?: Date; } export declare enum NextQuestionDtoApiTypeEnumApi { MultipleChoice = "multiple_choice", FreeText = "free_text", NumberRange = "number_range" } export declare enum NextQuestionDtoApiAnswerTypeEnumApi { Text = "text", Number = "number", Date = "date" }