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