/** * LIS Webapps API * Communication * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http'; import { Observable } from 'rxjs'; import { PackageTimesDTO } from '../model/models'; import { GuiConfiguration } from '../configuration'; export declare class DefaultService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: GuiConfiguration; encoder: HttpParameterCodec; constructor(httpClient: HttpClient, basePath: string, configuration: GuiConfiguration); private addToHttpParams; private addToHttpParamsRecursive; /** * Testing the setup * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ hugoTestGet(observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain'; }): Observable; hugoTestGet(observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain'; }): Observable>; hugoTestGet(observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain'; }): Observable>; /** * Puts an XML File * @param customerId Numeric ID of the customer to get * @param date the date from wicht the information needs to be retrived * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ medlogCustomerIdDateGet(customerId: number, date: string, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; }): Observable>; medlogCustomerIdDateGet(customerId: number, date: string, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; }): Observable>>; medlogCustomerIdDateGet(customerId: number, date: string, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; }): Observable>>; /** * Puts an XML File * @param customerId Numeric ID of the customer to get * @param date the date from wicht the information needs to be retrived * @param daysBack Number of days back the result contains * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ medlogDaysGet(customerId: number, date: string, daysBack: number, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; }): Observable>; medlogDaysGet(customerId: number, date: string, daysBack: number, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; }): Observable>>; medlogDaysGet(customerId: number, date: string, daysBack: number, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; }): Observable>>; }