UNPKG

@veeroute/lss-studio-angular

Version:

OpenAPI client for @veeroute/lss-studio-angular

32 lines (31 loc) 1.06 kB
/** * VRt.Studio [ST] * * The version of the OpenAPI document: 7.18.2755 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { TripStatisticsStudio } from './tripStatistics'; import { TaskStatisticsStudio } from './taskStatistics'; import { GeneralStatisticsStudio } from './generalStatistics'; import { QualityStudio } from './quality'; import { LocationStatisticsStudio } from './locationStatistics'; /** * General statistics on the calculation result. */ export interface PlanStatisticsStudio { [key: string]: any | any; total_statistics: GeneralStatisticsStudio; /** * List of statistics for each scheduled trip separately. */ trips_statistics: Array<TripStatisticsStudio>; /** * Statistics on the loading of locations for which bandwidth restrictions have been set. */ locations_statistics: Array<LocationStatisticsStudio>; task_statistics: TaskStatisticsStudio | null; quality: QualityStudio | null; }