//#region src/model/ChartChartOption.d.ts type IChartChartOption = { id: string; type: string; chartOptions: any; }; /** * @typedef {Object} IChartChartOption * @property {String} id * @property {String} type * @property {Object} chartOptions */ /** * The ChartChartOption model module. * @module model/ChartChartOption * @type {IChartChartOption} */ declare class ChartChartOption { /** * 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, type: any): void; /** * Constructs a ChartChartOption 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/ChartChartOption} obj Optional instance to populate. * @return {module:model/ChartChartOption} The populated ChartChartOption instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ChartChartOption. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ChartChartOption. */ static validateJSON(data: any): boolean; /** * Constructs a new ChartChartOption. * @alias module:model/ChartChartOption * @param {String} id - * @param {String} type - */ constructor(id: string, type: string); id: string; type: string; chartOptions: any; } declare namespace ChartChartOption { let RequiredProperties: string[]; } //#endregion export { IChartChartOption, ChartChartOption as default };