/** * 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 { TransportLoadDelivery } from './transportLoad'; import { MeasurementsDelivery } from './measurements'; import { LocationDelivery } from './location'; /** * Statistics for a specific stop during a trip where: * `location` - location where the stop occurs. * `upload` - loading to the vehicle at this stop. * `download` - unloading from the vehicle at this stop. * `current_load` - the current loading of the vehicle after this stop. */ export interface StopStatisticsDelivery { location: LocationDelivery; /** * Location key to separate different locations with the same geographical coordinates. */ location_key?: string; /** * ID list of demands fulfilled at this stop. */ demand_ids?: Array; measurements: MeasurementsDelivery | null; upload?: TransportLoadDelivery | null; download?: TransportLoadDelivery | null; current_load?: TransportLoadDelivery | null; }