/** * 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 { TextSupportedContentType } from './textSupportedContentType'; /** * Permite definir los campos y sis restricciones. de una forma comun y general. */ export interface EventoFields { /** * 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?: EventoFields.ClasificacionEnum; } export declare namespace EventoFields { type ClasificacionEnum = 'EVENTO' | 'ACTIVIDAD'; const ClasificacionEnum: { EVENTO: ClasificacionEnum; ACTIVIDAD: ClasificacionEnum; }; }