UNPKG

scheunemann-interfaces

Version:
31 lines (30 loc) 896 B
"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;