/** * 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 { PriorityEnumApi } from './priorityEnum'; import { TeamApi } from './team'; import { ProgramRunApi } from './programRun'; import { ProgramAssignmentApi } from './programAssignment'; import { QuestionApi } from './question'; import { CoachApi } from './coach'; export interface ProgramApi { id: string; createdBy: string; createdAt: Date; updatedAt: Date; deletedAt: Date; priority: PriorityEnumApi; isAccelerated: boolean; isActive: boolean; name: string; description?: string; expectation: number; startDate?: Date; showTimer: boolean; questions?: Array; teams: Array; assignments: Array; runs: Array; coach?: CoachApi; coachId?: string; }