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