/** * 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 { ScoreTypeEnumApi } from './scoreTypeEnum'; import { ScoreTimeframeEnumApi } from './scoreTimeframeEnum'; import { ScoreByTypeEnumApi } from './scoreByTypeEnum'; import { ScoreDtoApi } from './scoreDto'; export interface ScoresResponseDtoApi { type: ScoreTypeEnumApi; timeframe: ScoreTimeframeEnumApi; scoredBy?: ScoreByTypeEnumApi; /** * Company ID. Must be a UUID string. */ companyId: string; /** * An array of score objects. */ scores: Array; /** * The ID for the type to filter by */ scoredById?: string; /** * The minimum number of total counts. */ countGreaterThan?: number; /** * The earliest date to include in the score. */ dateAfter?: Date; /** * The latest date to include in the score. */ dateBefore?: Date; }