/** * 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 { ProgramacionActividad } from '../model/programacionActividad'; import { ProgramacionActividadBase } from '../model/programacionActividadBase'; import { ProgramacionActividadPatch } from '../model/programacionActividadPatch'; import { Configuration } from '../configuration'; export declare class ProgramacionActividadService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; encoder: HttpParameterCodec; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); /** * Obtiene el listing de personas. * Permite descargar el listin de personas. * @param empresaId Especifica la empresaid. * @param actividadId El id de un evento asociado a la empresa. * @param yyyymmdd La fecha de la programacion. * @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. */ getEmpresasByIdActividadesByIdListing(empresaId: string, actividadId: string, yyyymmdd: string, attachment?: boolean, observe?: 'body', reportProgress?: boolean): Observable; getEmpresasByIdActividadesByIdListing(empresaId: string, actividadId: string, yyyymmdd: string, attachment?: boolean, observe?: 'response', reportProgress?: boolean): Observable>; getEmpresasByIdActividadesByIdListing(empresaId: string, actividadId: string, yyyymmdd: string, attachment?: boolean, observe?: 'events', reportProgress?: boolean): Observable>; /** * Obtiene la lista de programaciones paginadas. por defecto se ordena en orden descendente de fecha. * La programacion es mostradacon su paginacion. * @param empresaId Especifica la empresaid. * @param actividadId El id de un evento asociado a la empresa. * @param $filter * @param $size * @param $page * @param $sort * @param $fields * @param period * @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. */ getEmpresasByIdActividadesByIdProgramaciones(empresaId: string, actividadId: string, $filter?: string, $size?: number, $page?: number, $sort?: string, $fields?: string, period?: string, observe?: 'body', reportProgress?: boolean): Observable>; getEmpresasByIdActividadesByIdProgramaciones(empresaId: string, actividadId: string, $filter?: string, $size?: number, $page?: number, $sort?: string, $fields?: string, period?: string, observe?: 'response', reportProgress?: boolean): Observable>>; getEmpresasByIdActividadesByIdProgramaciones(empresaId: string, actividadId: string, $filter?: string, $size?: number, $page?: number, $sort?: string, $fields?: string, period?: string, observe?: 'events', reportProgress?: boolean): Observable>>; /** * Establece una programacion para el dia especifico * Establece una nueva programacion para el dia especifico. * @param empresaId Especifica la empresaid. * @param actividadId El id de un evento asociado a la empresa. * @param yyyymmdd La fecha de la programacion. * @param programacionActividadPatch Un Objeto JSON que representa la información de la programacion. * @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. */ patchEmpresasByIdActividadesByIdProgramacionesDate(empresaId: string, actividadId: string, yyyymmdd: string, programacionActividadPatch?: ProgramacionActividadPatch, observe?: 'body', reportProgress?: boolean): Observable; patchEmpresasByIdActividadesByIdProgramacionesDate(empresaId: string, actividadId: string, yyyymmdd: string, programacionActividadPatch?: ProgramacionActividadPatch, observe?: 'response', reportProgress?: boolean): Observable>; patchEmpresasByIdActividadesByIdProgramacionesDate(empresaId: string, actividadId: string, yyyymmdd: string, programacionActividadPatch?: ProgramacionActividadPatch, observe?: 'events', reportProgress?: boolean): Observable>; /** * Crea una nueva programacion para la actividad especificada. * Crea una nueva programacion para la actividad especificada. * @param empresaId Especifica la empresaid. * @param actividadId El id de un evento asociado a la empresa. * @param programacionActividadBase Un Objeto JSON que representa la informacion de la programacion. * @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. */ postEmpresasByIdActividadesByIdProgramaciones(empresaId: string, actividadId: string, programacionActividadBase?: ProgramacionActividadBase, observe?: 'body', reportProgress?: boolean): Observable; postEmpresasByIdActividadesByIdProgramaciones(empresaId: string, actividadId: string, programacionActividadBase?: ProgramacionActividadBase, observe?: 'response', reportProgress?: boolean): Observable>; postEmpresasByIdActividadesByIdProgramaciones(empresaId: string, actividadId: string, programacionActividadBase?: ProgramacionActividadBase, observe?: 'events', reportProgress?: boolean): Observable>; /** * Establece una programacion para el dia especifico * Establece una nueva programacion para el dia especifico. * @param empresaId Especifica la empresaid. * @param actividadId El id de un evento asociado a la empresa. * @param yyyymmdd La fecha de la programacion. * @param programacionActividadBase Un Objeto JSON que representa la información de la programacion. * @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. */ putEmpresasByIdActividadesByIdProgramacionesDate(empresaId: string, actividadId: string, yyyymmdd: string, programacionActividadBase?: ProgramacionActividadBase, observe?: 'body', reportProgress?: boolean): Observable; putEmpresasByIdActividadesByIdProgramacionesDate(empresaId: string, actividadId: string, yyyymmdd: string, programacionActividadBase?: ProgramacionActividadBase, observe?: 'response', reportProgress?: boolean): Observable>; putEmpresasByIdActividadesByIdProgramacionesDate(empresaId: string, actividadId: string, yyyymmdd: string, programacionActividadBase?: ProgramacionActividadBase, observe?: 'events', reportProgress?: boolean): Observable>; }