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