/**
 * 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 { 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>;
}
