/** * 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'; import { EventoFields } from './eventoFields'; /** * Define los campos bases requeridos del cliente. */ export interface EventoBase { /** * 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?: EventoBase.ClasificacionEnum; readonly alwaysNullField?: boolean; } export declare namespace EventoBase { type ClasificacionEnum = 'EVENTO' | 'ACTIVIDAD'; const ClasificacionEnum: { EVENTO: EventoFields.ClasificacionEnum; ACTIVIDAD: EventoFields.ClasificacionEnum; }; }