@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
71 lines • 1.66 kB
JavaScript
"use strict";
const BaseModel_1 = require("../BaseModel");
module.exports = class OutputDevice extends BaseModel_1.BaseModel {
set id(value) {
this._id = value;
}
get id() {
return this._id;
}
set address(value) {
this._address = value;
}
get address() {
return this._address;
}
set defaultState(value) {
this._defaultState = value;
}
get defaultState() {
return this._defaultState;
}
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 _ntegrated(value) {
this._integrated = value;
}
get integrated() {
return this._integrated;
}
set extensibleConfiguration(value) {
this._extensibleConfiguration = value;
}
get extensibleConfiguration() {
return this._extensibleConfiguration;
}
};
//# sourceMappingURL=OutputDevice.js.map