UNPKG

@veeroute/lss-routing-angular

Version:

OpenAPI client for @veeroute/lss-routing-angular

53 lines (52 loc) 1.59 kB
/** * 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 { GeoSettingsRouting } from './geoSettings'; import { RouteWaypointRouting } from './routeWaypoint'; import { TransportTypeRouting } from './transportType'; /** * Task for route planning. The departure time considers traffic jams. */ export interface RouteTaskRouting { [key: string]: any | any; /** * Array of geographical points to build path between them. */ waypoints: Array<RouteWaypointRouting>; transport_type?: TransportTypeRouting; geo_settings?: GeoSettingsRouting; /** * Departure date and time according to the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6). */ departure_time?: string | null; /** * Timezone. */ result_timezone?: number; /** * Building a detailed route - adds paths from points that are not on roads to nearby roads. */ detail?: boolean; /** * Return a complete list of route segments. If the option is disabled, a short list is returned for simplified route display. */ full_segments?: boolean; /** * Generate a polyline between points. */ polyline?: boolean; /** * Generate times at intermediate points along the track. */ trackpoint_time?: boolean; /** * The name of the dataset. A technical field that does not affect calculation. */ dataset_name?: string; }