/**
 * 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 { TransportLoadStudio } from './transportLoad';
import { MeasurementsStudio } from './measurements';
import { TimeWindowStudio } from './timeWindow';
import { AttributeStudio } from './attribute';
import { StopDemandStudio } from './stopDemand';
/**
 * Statistics for a specific stop during a trip.
 */
export interface StopStatisticsStudio {
    [key: string]: any | any;
    /**
     * Location key for stop.
     */
    location_key: string;
    /**
     * List of orders completed at this stop.
     */
    stop_demands: Array<StopDemandStudio>;
    stop_time_window: TimeWindowStudio | null;
    measurements: MeasurementsStudio;
    upload: TransportLoadStudio;
    download: TransportLoadStudio;
    max_load: TransportLoadStudio;
    arrival_load: TransportLoadStudio;
    departure_load: TransportLoadStudio;
    /**
     * Attributes. Used to add service information.
     */
    attributes?: Array<AttributeStudio>;
}
