/** * Kogui * Kogui App * * The version of the OpenAPI document: 1.0.0 * * * 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 { Configuration } from '../configuration'; export declare class AdjuntosService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; encoder: HttpParameterCodec; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); /** * Obtiene la lista de adjuntos. * La programacion es mostradacon su paginacion. * @param empresaId Especifica la empresaid. * @param adjuntoId El id de un adjunto asociado a la empresa. * @param attachment Especifica el disposition * @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. */ getEmpresasByIdAdjuntos(empresaId: string, adjuntoId: string, attachment?: boolean, observe?: 'body', reportProgress?: boolean): Observable; getEmpresasByIdAdjuntos(empresaId: string, adjuntoId: string, attachment?: boolean, observe?: 'response', reportProgress?: boolean): Observable>; getEmpresasByIdAdjuntos(empresaId: string, adjuntoId: string, attachment?: boolean, observe?: 'events', reportProgress?: boolean): Observable>; }