scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
31 lines (30 loc) • 896 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FeatureEntity = void 0;
var FeatureEntity = /** @class */ (function () {
// #endregion Properties (11)
// #region Constructors (1)
function FeatureEntity(data) {
// #region Properties (11)
this.appId = '';
this.appMode = null;
this.companyId = '';
this.containerId = '';
this.createdAt = new Date();
this.deviceId = '';
this.id = '';
this.installationId = '';
this.name = '';
this.planId = null;
this.subscriptionId = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return FeatureEntity;
}());
exports.FeatureEntity = FeatureEntity;