/**
 * VRt.Packer [PC]
 *
 * 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 { CheckResultPacker } from '../model/models';
import { VersionResultPacker } 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<CheckResultPacker>;
    /**
     * 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<VersionResultPacker>;
}
