/** * 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. */ /** * Mantiene informacion de los dispositivos. */ export interface Devices { /** * El identificador del documento. */ id?: string; /** * El id del dispositivo dada por FCM al momento de instalar la applicacion. */ deviceId?: string; /** * Indica el usuario que han interactuado con este dispositivo. */ user?: string; /** * Los tags asociados a este dispositivo. */ tags?: Array; /** * Fecha de creacion. */ createdAt?: Date; /** * Fecha de ultima actualizacion. */ updatedAt?: Date; }