/** * 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 { IdDtoApi } from './idDto'; import { PriorityEnumApi } from './priorityEnum'; export interface PatchProgramDtoApi { /** * Specifies the expected score. Default is 75. Optional. */ expectation?: number; priority?: PriorityEnumApi; /** * Specifies the team Ids associated with the program. Optional. */ teamIds?: Array; /** * Specifies whether the program is active or not. Optional. */ isActive?: boolean; /** * Specifies the name of the program. Required. */ name?: string; /** * Specifies the description of the program. Optional. */ description?: string; /** * Specifies whether the program should display a timer or not. Optional. */ showTimer?: boolean; coachId?: string; }