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