import "../ApiClient-fBZ10h6n.mjs"; import { t as TimeWindow_default } from "../TimeWindow-yZHN4x2t.mjs"; //#region src/model/DashboardControllerDashboardResponse.d.ts type IDashboardControllerDashboardResponse = { tenantId: string; id: string; title: string; description: string; timeWindow: TimeWindow_default; /** * :model/ChartChartOption>} charts */ "": Array; deleted: boolean; created: Date; updated: Date; sourceCode: string; }; /** * @typedef {Object} IDashboardControllerDashboardResponse * @property {String} tenantId * @property {String} id * @property {String} title * @property {String} description * @property {TimeWindow} timeWindow * @property {Array.} charts * @property {Boolean} deleted * @property {Date} created * @property {Date} updated * @property {String} sourceCode */ /** * The DashboardControllerDashboardResponse model module. * @module model/DashboardControllerDashboardResponse * @type {IDashboardControllerDashboardResponse} */ declare class DashboardControllerDashboardResponse { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, id: any, title: any, deleted: any): void; /** * Constructs a DashboardControllerDashboardResponse from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/DashboardControllerDashboardResponse} obj Optional instance to populate. * @return {module:model/DashboardControllerDashboardResponse} The populated DashboardControllerDashboardResponse instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to DashboardControllerDashboardResponse. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to DashboardControllerDashboardResponse. */ static validateJSON(data: any): boolean; /** * Constructs a new DashboardControllerDashboardResponse. * @alias module:model/DashboardControllerDashboardResponse * @param {String} id - * @param {String} title - * @param {Boolean} deleted - */ constructor(id: string, title: string, deleted: boolean); tenantId: string; id: string; title: string; description: string; timeWindow: TimeWindow_default; charts: any; deleted: boolean; created: Date; updated: Date; sourceCode: string; } declare namespace DashboardControllerDashboardResponse { let RequiredProperties: string[]; } //#endregion export { IDashboardControllerDashboardResponse, DashboardControllerDashboardResponse as default };