/** * 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 { ReferenceEntity } from './referenceEntity'; export interface FavoriteAllOf { /** * El identificador del Favorite. */ readonly id?: string; readonly user?: string; readonly createdAt?: Date; readonly expireAt?: Date; /** * Especifica una fecha de comienzo del evento marcado.. */ readonly startAt?: Date; readonly endAt?: Date; target?: ReferenceEntity; /** * Especifica algunos tags o etiquetas asociados a esta favorito. */ readonly tags?: Array; }