UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

48 lines (47 loc) 1.35 kB
import { ModelDefinition } from './BaseModels'; import { Log } from './Log'; export interface DeviceEventStateChangeInterface { id?: string; name: string; description?: string; created?: Date; modified?: Date; deleted?: Date; userId?: string; principalType?: string; user?: any; trackingLogs?: Log[]; } export declare class DeviceEventStateChange implements DeviceEventStateChangeInterface { id: string; name: string; description: string; created: Date; modified: Date; deleted: Date; userId: string; principalType: string; user?: any; trackingLogs?: Log[]; constructor(data?: DeviceEventStateChangeInterface); /** * The name of the model represented by this $resource, * i.e. `DeviceEventStateChange`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of DeviceEventStateChange for dynamic purposes. */ static factory(data: DeviceEventStateChangeInterface): DeviceEventStateChange; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }