/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { DeviceConfigurationDto } from './device-configuration-dto'; import { ModelMetaObjectDto } from './model-meta-object-dto'; /** * * @export * @interface DeviceDto */ export interface DeviceDto { /** * Describes the date of the last update * @type {number} * @memberof DeviceDto */ lastUpdatedAt?: number; /** * Describe the date when the entity was deleted * @type {number} * @memberof DeviceDto */ deletedAt?: number; /** * * @type {string} * @memberof DeviceDto */ id?: string; /** * * @type {number} * @memberof DeviceDto */ createdAt?: number; /** * * @type {ModelMetaObjectDto} * @memberof DeviceDto */ _meta?: ModelMetaObjectDto; /** * * @type {string} * @memberof DeviceDto */ uuid?: string; /** * * @type {string} * @memberof DeviceDto */ pairingPin?: string; /** * * @type {string} * @memberof DeviceDto */ name: string; /** * * @type {number} * @memberof DeviceDto */ lastContact?: number; /** * * @type {DeviceConfigurationDto} * @memberof DeviceDto */ configuration?: DeviceConfigurationDto; }