/** * 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 { FotoEvento } from './fotoEvento'; import { EstadoEvento } from './estadoEvento'; export interface EventoAllOf { /** * El identificador del Evento. */ readonly id?: string; /** * La empresa id del evento. */ readonly empresa?: string; readonly fotos?: Array; readonly createdAt?: Date; readonly updatedAt?: Date; /** * Especifica el cupo disponible */ readonly cuposDisponibles?: number; readonly estado?: EstadoEvento; }