/** * 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'; import { TextSupportedContentType } from './textSupportedContentType'; /** * Describe un Evento. */ export interface Evento { /** * Define el titulo del evento. */ titulo: string; /** * Informacion del evento. */ info: string; /** * Itinerario del evento. */ itinerario: string; /** * Que incluye */ incluye: string; /** * Que no incluye */ noIncluye: string; /** * Recomendaciones */ recomendaciones: string; /** * Termino y condiciones */ terminoCondiciones: string; /** * Devoluciones y reembolso */ devoluciones: string; formatText: TextSupportedContentType; /** * Fecha de comienzo del evento. */ fecha: Date; /** * Fecha de finalizacion del evento. */ finalizacion: Date; /** * Especifica el costo del evento. En pesos. */ valor: number; /** * Especifica la capacidad del evento. */ cupos: number; /** * Especifica la categoria del evento. como un conjuntos de tags indexado. */ categoria?: Array; /** * Especifica el tipo del evento. */ clasificacion?: Evento.ClasificacionEnum; readonly alwaysNullField?: boolean; /** * 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; } export declare namespace Evento { type ClasificacionEnum = 'EVENTO' | 'ACTIVIDAD'; const ClasificacionEnum: { EVENTO: import("./eventoFields").EventoFields.ClasificacionEnum; ACTIVIDAD: import("./eventoFields").EventoFields.ClasificacionEnum; }; }