UNPKG

@veeroute/lss-routing-angular

Version:

OpenAPI client for @veeroute/lss-routing-angular

38 lines (37 loc) 1.18 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 { CheckResultRouting } from '../model/models'; import { VersionResultRouting } from '../model/models'; import { Configuration } from '../configuration'; export interface FileRequestParams { filename: string; } export interface SystemServiceInterface { defaultHeaders: HttpHeaders; configuration: Configuration; /** * Checking the availability * Checking the service availability. */ check(extraHttpRequestParams?: any): Observable<CheckResultRouting>; /** * Getting the documentation * Getting the file with this service documentation. * @param requestParameters */ file(requestParameters: FileRequestParams, extraHttpRequestParams?: any): Observable<string>; /** * Getting the service version * Getting the service version. */ version(extraHttpRequestParams?: any): Observable<VersionResultRouting>; }