/**
 * VRt.Routing [RT]
 *
 * The version of the OpenAPI document: 7.16.2673
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { TimeWindowRouting } from './timeWindow';
/**
 * General route statistics.
 */
export interface RouteStatisticsRouting {
    [key: string]: any | any;
    time_window: TimeWindowRouting | null;
    /**
     * Total length, in meters.
     */
    distance: number;
    /**
     * Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
     */
    duration: string;
    /**
     * Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
     */
    stopping_time: string;
}
