UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

58 lines (57 loc) 1.57 kB
import { ModelDefinition } from './BaseModels'; import { Log } from './Log'; import { Project } from './Project'; import { SummaryForAsset } from './SummaryForAsset'; export interface SummaryForProjectInterface { id?: string; type: string; from: Date; to: Date; length: number; detail: any; updated: boolean; created?: Date; modified?: Date; deleted?: Date; projectId?: any; trackingLogs?: Log[]; project?: Project; summaryForAssets?: SummaryForAsset[]; } export declare class SummaryForProject implements SummaryForProjectInterface { id: string; type: string; from: Date; to: Date; length: number; detail: any; updated: boolean; created: Date; modified: Date; deleted: Date; projectId: any; trackingLogs?: Log[]; project?: Project; summaryForAssets?: SummaryForAsset[]; constructor(data?: SummaryForProjectInterface); /** * The name of the model represented by this $resource, * i.e. `SummaryForProject`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of SummaryForProject for dynamic purposes. */ static factory(data: SummaryForProjectInterface): SummaryForProject; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }