/** * Veeroute.Delivery * Veeroute Delivery API * * The version of the OpenAPI document: 3.15.183137 * Contact: support@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { StopStatisticsDelivery } from './stopStatistics'; import { TransportLoadDelivery } from './transportLoad'; import { StatisticsDelivery } from './statistics'; /** * Statistics for a specific trip, where: * `total_load` - total vehicle utilization by load for the entire trip time. * `max_load` - maximum vehicle utilization by load during the entire trip (for each dimension). * `max_transfer_load` - maximum vehicle utilization by load during the driving (for each dimension). */ export interface TripStatisticsDelivery { /** * Trip key, unique ID */ trip_key: string; statistics: StatisticsDelivery | null; /** * Statistics per stop during the trip. */ stop_statistics: Array; total_load?: TransportLoadDelivery | null; max_load?: TransportLoadDelivery | null; max_transfer_load?: TransportLoadDelivery | null; }