@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
83 lines • 1.85 kB
JavaScript
"use strict";
const BaseModel_1 = require("../BaseModel");
module.exports = class Incident extends BaseModel_1.BaseModel {
set id(value) {
this._id = value;
}
get id() {
return this._id;
}
set description(value) {
this._description = value;
}
get description() {
return this._description;
}
set physicalLocation(value) {
this._physicalLocation = value;
}
get physicalLocation() {
return this._physicalLocation;
}
set incidentType(value) {
this._incidentType = value;
}
get incidentType() {
return this._incidentType;
}
set incidentPriority(value) {
this._incidentPriority = value;
}
get incidentPriority() {
return this._incidentPriority;
}
set userId(value) {
this._userId = value;
}
get userId() {
return this._userId;
}
set device(value) {
this._device = value;
}
get device() {
return this._device;
}
set status(value) {
this._status = value;
}
get status() {
return this._status;
}
set creationDate(value) {
this._creationDate = value;
}
get creationDate() {
return this._creationDate;
}
set incidentDate(value) {
this._incidentDate = value;
}
get incidentDate() {
return this._incidentDate;
}
set timezoneOffset(value) {
this._timezoneOffset = value;
}
get timezoneOffset() {
return this._timezoneOffset;
}
set procedures(value) {
this._procedures = value;
}
get procedures() {
return this._procedures;
}
set people(value) {
this._people = value;
}
get people() {
return this._people;
}
};
//# sourceMappingURL=Incident.js.map