UNPKG

@veeroute/lss-routing-angular

Version:

OpenAPI client for @veeroute/lss-routing-angular

28 lines (27 loc) 1.08 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 { HttpHeaders } from '@angular/common/http'; import { Observable } from 'rxjs'; import { RouteResultRouting } from '../model/models'; import { RouteTaskRouting } from '../model/models'; import { Configuration } from '../configuration'; export interface RunRouteCalculationRequestParams { routeTaskRouting: RouteTaskRouting; } export interface RouteServiceInterface { defaultHeaders: HttpHeaders; configuration: Configuration; /** * Route between points * Constructing a route between points, taking into account the specified order and time at each stop. When specifying the departure time &#x60;departure_time&#x60;, traffic jams are taken into account. * @param requestParameters */ runRouteCalculation(requestParameters: RunRouteCalculationRequestParams, extraHttpRequestParams?: any): Observable<RouteResultRouting>; }