UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

55 lines (54 loc) 1.51 kB
import { ModelDefinition } from './BaseModels'; import { Asset } from './Asset'; import { AssetState } from './AssetState'; import { Customer } from './Customer'; import { Log } from './Log'; export interface AssetStateChangeInterface { changeAt: Date; created?: Date; modified?: Date; deleted?: Date; id?: any; assetId?: any; assetStateId?: any; customerId?: any; asset?: Asset; assetState?: AssetState; customer?: Customer; trackingLogs?: Log[]; } export declare class AssetStateChange implements AssetStateChangeInterface { changeAt: Date; created: Date; modified: Date; deleted: Date; id: any; assetId: any; assetStateId: any; customerId: any; asset?: Asset; assetState?: AssetState; customer?: Customer; trackingLogs?: Log[]; constructor(data?: AssetStateChangeInterface); /** * The name of the model represented by this $resource, * i.e. `AssetStateChange`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of AssetStateChange for dynamic purposes. */ static factory(data: AssetStateChangeInterface): AssetStateChange; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }