/** * 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 { FotoEventoTipo } from './fotoEventoTipo'; /** * Representa una foto del evento */ export interface FotoEvento { /** * Dependiendo de la implementacion puede apuntar directamente a un gridfs, o alguna coleccion distinta que maneje su relacion con un almacenamiento externo. */ readonly refId?: string; tipo?: FotoEventoTipo; readonly location?: string; }