UNPKG

@veeroute/lss-universal-angular

Version:

OpenAPI client for @veeroute/lss-universal-angular

32 lines (31 loc) 1.08 kB
/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.23.2926 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { QualityUniversal } from './quality'; import { LocationStatisticsUniversal } from './locationStatistics'; import { GeneralStatisticsUniversal } from './generalStatistics'; import { TripStatisticsUniversal } from './tripStatistics'; import { TaskStatisticsUniversal } from './taskStatistics'; /** * General statistics on the calculation result. */ export interface PlanStatisticsUniversal { [key: string]: any | any; total_statistics: GeneralStatisticsUniversal; /** * List of statistics for each scheduled trip separately. */ trips_statistics: Array<TripStatisticsUniversal>; /** * Statistics on the loading of locations for which bandwidth restrictions have been set. */ locations_statistics: Array<LocationStatisticsUniversal>; task_statistics: TaskStatisticsUniversal; quality: QualityUniversal; }