UNPKG

@veeroute/lss-routing-angular

Version:

OpenAPI client for @veeroute/lss-routing-angular

31 lines (30 loc) 834 B
/** * VRt.Routing [RT] * * 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 { 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; }