UNPKG

@veeroute/lss-routing-angular

Version:

OpenAPI client for @veeroute/lss-routing-angular

28 lines (27 loc) 1.03 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 { 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 &#x60;route&#x60; method. * @param requestParameters */ runMatrixCalculation(requestParameters: RunMatrixCalculationRequestParams, extraHttpRequestParams?: any): Observable<MatrixResultRouting>; }