UNPKG

@seniorsistemas/senior-sam

Version:
59 lines 1.39 kB
"use strict"; const BaseModel_1 = require("../BaseModel"); module.exports = class Device extends BaseModel_1.BaseModel { set id(value) { this._id = value; } get id() { return this._id; } set parent(value) { this._parent = value; } get parent() { return this._parent; } set description(value) { this._description = value; } get description() { return this._description; } set deviceType(value) { this._deviceType = value; } get deviceType() { return this._deviceType; } set situation(value) { this._situation = value; } get situation() { return this._situation; } set physicalLocation(value) { this._physicalLocation = value; } get physicalLocation() { return this._physicalLocation; } set communicationStatus(value) { this._communicationStatus = value; } get communicationStatus() { return this._communicationStatus; } set integrated(value) { this._integrated = value; } get integrated() { return this._integrated; } set extensibleConfiguration(value) { this._extensibleConfiguration = value; } get extensibleConfiguration() { return this._extensibleConfiguration; } }; //# sourceMappingURL=Device.js.map