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