/**
 * 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 { RouteStatisticsRouting } from './routeStatistics';
import { RouteLegRouting } from './routeLeg';
/**
 * Information about the planned route.
 */
export interface RouteRouting {
    [key: string]: any | any;
    /**
     * Route segments between locations specified in the parameter `waypoints`.
     */
    legs: Array<RouteLegRouting>;
    statistics: RouteStatisticsRouting;
}
