/** * 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 { Empresa } from './empresa'; import { RatingResumen } from './ratingResumen'; import { Actividad } from './actividad'; import { Evento } from './evento'; export interface KoguiEmpresa { readonly id?: string; rating?: RatingResumen; empresa?: Empresa; eventos?: Array; actividades?: Array; /** * Especifica si este elemento esta en el favorito del usuario que lista. */ favorite?: boolean; }