UNPKG

@veeroute/lss-account-angular

Version:

OpenAPI client for @veeroute/lss-account-angular

38 lines (37 loc) 1.18 kB
/** * VRt.Account [AC] * * The version of the OpenAPI document: 7.23.2926 * 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 { CheckResultAccount } from '../model/models'; import { VersionResultAccount } 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<CheckResultAccount>; /** * 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<VersionResultAccount>; }