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