@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
53 lines • 1.21 kB
JavaScript
"use strict";
const BaseModel_1 = require("../BaseModel");
module.exports = class Group 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 name(value) {
this._name = value;
}
get name() {
return this._name;
}
set physicalLocation(value) {
this._physicalLocation = value;
}
get physicalLocation() {
return this._physicalLocation;
}
set parkingSpace(value) {
this._parkingSpace = value;
}
get parkingSpace() {
return this._parkingSpace;
}
set parkingSpaceInUse(value) {
this._parkingSpaceInUse = value;
}
get parkingSpaceInUse() {
return this._parkingSpaceInUse;
}
set people(value) {
this._people = value;
}
get people() {
return this._people;
}
set fullHierarchicalPath(value) {
this._fullHierarchicalPath = value;
}
get fullHierarchicalPath() {
return this._fullHierarchicalPath;
}
};
//# sourceMappingURL=Group.js.map