@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
71 lines • 1.65 kB
JavaScript
"use strict";
const BaseModel_1 = require("../BaseModel");
module.exports = class Scheduling extends BaseModel_1.BaseModel {
set id(value) {
this._id = value;
}
get id() {
return this._id;
}
set title(value) {
this._title = value;
}
get title() {
return this._title;
}
set expectedStartDate(value) {
this._expectedStartDate = value;
}
get expectedStartDate() {
return this._expectedStartDate;
}
set expectedEndDate(value) {
this._expectedEndDate = value;
}
get expectedEndDate() {
return this._expectedEndDate;
}
set visitType(value) {
this._visitType = value;
}
get visitType() {
return this._visitType;
}
set physicalLocation(value) {
this._physicalLocation = value;
}
get physicalLocation() {
return this._physicalLocation;
}
set visitedPeople(value) {
this._visitedPeople = value;
}
get visitedPeople() {
return this._visitedPeople;
}
set visitors(value) {
this._visitors = value;
}
get visitors() {
return this._visitors;
}
set schedulingResources(value) {
this._schedulingResources = value;
}
get schedulingResources() {
return this._schedulingResources;
}
set visitSituation(value) {
this._visitSituation = value;
}
get visitSituation() {
return this._visitSituation;
}
set lobby(value) {
this._lobby = value;
}
get lobby() {
return this._lobby;
}
};
//# sourceMappingURL=Scheduling.js.map