/** * 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 { EstadoActividad } from '../model/estadoActividad'; import { KoguiActividad } from '../model/koguiActividad'; import { ProgramacionActividad } from '../model/programacionActividad'; import { Configuration } from '../configuration'; export declare class KoguiActividadesService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; encoder: HttpParameterCodec; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); /** * La lista de actividades para un usuario en especifico. * Las Actividades. * @param actividadId El id de una actividad asociado a la empresa. * @param xFcmtoken * @param $fields * @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. */ getKoguiActividadById(actividadId: string, xFcmtoken?: string, $fields?: string, observe?: 'body', reportProgress?: boolean): Observable; getKoguiActividadById(actividadId: string, xFcmtoken?: string, $fields?: string, observe?: 'response', reportProgress?: boolean): Observable>; getKoguiActividadById(actividadId: string, xFcmtoken?: string, $fields?: string, observe?: 'events', reportProgress?: boolean): Observable>; /** * La lista de programaciones para una actividad especifica. * Las Actividades. * @param actividadId El id de una actividad asociado a la empresa. * @param xFcmtoken * @param $fields * @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. */ getKoguiActividadByIdProgamaciones(actividadId: string, xFcmtoken?: string, $fields?: string, observe?: 'body', reportProgress?: boolean): Observable>; getKoguiActividadByIdProgamaciones(actividadId: string, xFcmtoken?: string, $fields?: string, observe?: 'response', reportProgress?: boolean): Observable>>; getKoguiActividadByIdProgamaciones(actividadId: string, xFcmtoken?: string, $fields?: string, observe?: 'events', reportProgress?: boolean): Observable>>; /** * Obtiene una foto de actividad identificada por id. * Obtiene una foto de actividad del id dado. * @param fotoId El id de la foto. * @param xFcmtoken * @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. */ getKoguiActividadeFotosById(fotoId: string, xFcmtoken?: string, observe?: 'body', reportProgress?: boolean): Observable; getKoguiActividadeFotosById(fotoId: string, xFcmtoken?: string, observe?: 'response', reportProgress?: boolean): Observable>; getKoguiActividadeFotosById(fotoId: string, xFcmtoken?: string, observe?: 'events', reportProgress?: boolean): Observable>; /** * Obtiene la lista de actividades paginadas. por defecto se ordenan en orden descendiente de creacion. * Al obtener las actividadesd puede especificar una paginacion y orden para mostrarlo. * @param xFcmtoken * @param $filter * @param $size * @param $page * @param $sort * @param $fields * @param $search Permite buscar por fulltext. * @param estado Especifica el estado a buscar. * @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. */ getKoguiActividades(xFcmtoken?: string, $filter?: string, $size?: number, $page?: number, $sort?: string, $fields?: string, $search?: string, estado?: EstadoActividad, observe?: 'body', reportProgress?: boolean): Observable>; getKoguiActividades(xFcmtoken?: string, $filter?: string, $size?: number, $page?: number, $sort?: string, $fields?: string, $search?: string, estado?: EstadoActividad, observe?: 'response', reportProgress?: boolean): Observable>>; getKoguiActividades(xFcmtoken?: string, $filter?: string, $size?: number, $page?: number, $sort?: string, $fields?: string, $search?: string, estado?: EstadoActividad, observe?: 'events', reportProgress?: boolean): Observable>>; }