@xompass/sdk-cloud-api
Version:
Xompass Client for cloud-api
53 lines (52 loc) • 1.34 kB
TypeScript
import { ModelDefinition } from './BaseModels';
import { Log } from './Log';
import { Project } from './Project';
export interface BIPanelInterface {
name: string;
description?: string;
chart?: any;
created?: Date;
modified?: Date;
deleted?: Date;
id?: any;
_series?: Array<any>;
projectId?: any;
series?: any[];
trackingLogs?: Log[];
project?: Project;
}
export declare class BIPanel implements BIPanelInterface {
name: string;
description: string;
chart: any;
created: Date;
modified: Date;
deleted: Date;
id: any;
_series: Array<any>;
projectId: any;
series?: any[];
trackingLogs?: Log[];
project?: Project;
constructor(data?: BIPanelInterface);
/**
* The name of the model represented by this $resource,
* i.e. `BIPanel`.
*/
static getModelName(): string;
/**
* @method factory
* @author Jonathan Casarrubias
* @license MIT
* This method creates an instance of BIPanel for dynamic purposes.
*/
static factory(data: BIPanelInterface): BIPanel;
/**
* @method getModelDefinition
* @author Julien Ledun
* @license MIT
* This method returns an object that represents some of the model
* definitions.
*/
static getModelDefinition(): ModelDefinition;
}