/** * 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 { EstadoActividad } from './estadoActividad'; export interface ActividadAllOf { /** * El identificador de la actividad. */ readonly id?: string; /** * La empresa id de la actividad. */ readonly empresa?: string; readonly fotos?: Array; readonly createdAt?: Date; readonly updatedAt?: Date; /** * fecha de expiracion */ readonly expireAt?: Date; readonly estado?: EstadoActividad; }