@veeroute/lss-routing-angular
Version:
OpenAPI client for @veeroute/lss-routing-angular
28 lines (27 loc) • 1.03 kB
TypeScript
/**
* VRt.Routing [RT]
*
* The version of the OpenAPI document: 7.32.3215
* Contact: support@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 { MatrixResultRouting } from '../model/models';
import { MatrixTaskRouting } from '../model/models';
import { Configuration } from '../configuration';
export interface RunMatrixCalculationRequestParams {
matrixTaskRouting: MatrixTaskRouting;
}
export interface MatrixServiceInterface {
defaultHeaders: HttpHeaders;
configuration: Configuration;
/**
* Time-distance matrix
* Creating time-distance matrices between each pair of locations. The result of this method may slightly differ from the `route` method.
* @param requestParameters
*/
runMatrixCalculation(requestParameters: RunMatrixCalculationRequestParams, extraHttpRequestParams?: any): Observable<MatrixResultRouting>;
}