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