/**
 * 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 { RouteStepRouting } from './routeStep';
/**
 * The route leg between two locations.
 */
export interface RouteLegRouting {
    [key: string]: any | any;
    /**
     * Steps required to pass a route leg.
     */
    steps: Array<RouteStepRouting>;
    /**
     * Name of the departure point. Filled in if specified in the source data.
     */
    departure_name?: string | null;
    /**
     * Name of the destination. Filled in if specified in the source data.
     */
    destination_name?: string | null;
    statistics: RouteStatisticsRouting;
}
