/** * 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 { ModelMetaObjectDto } from './model-meta-object-dto'; import { RootSocketDto } from './root-socket-dto'; import { SocketConnectionDto } from './socket-connection-dto'; import { WidgetDto } from './widget-dto'; /** * * @export * @interface CompoundWidgetDto */ export interface CompoundWidgetDto { /** * Describes the date of the last update * @type {number} * @memberof CompoundWidgetDto */ lastUpdatedAt?: number; /** * Describe the date when the entity was deleted * @type {number} * @memberof CompoundWidgetDto */ deletedAt?: number; /** * * @type {string} * @memberof CompoundWidgetDto */ id?: string; /** * * @type {number} * @memberof CompoundWidgetDto */ createdAt?: number; /** * * @type {ModelMetaObjectDto} * @memberof CompoundWidgetDto */ _meta?: ModelMetaObjectDto; /** * * @type {string} * @memberof CompoundWidgetDto */ name: string; /** * * @type {WidgetDto} * @memberof CompoundWidgetDto */ widget: WidgetDto; /** * * @type {Array} * @memberof CompoundWidgetDto */ socketConnections?: Array; /** * * @type {Array} * @memberof CompoundWidgetDto */ rootSockets?: Array; }