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