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