UNPKG

scheunemann-interfaces

Version:
29 lines (28 loc) 914 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NatiGoEntity = void 0; var enums_1 = require("../enums"); var NatiGoEntity = /** @class */ (function () { // #endregion Properties (8) // #region Constructors (1) function NatiGoEntity(data) { // #region Properties (8) this.documentVerificationAllowed = false; this.isForAdultsOnly = false; this.openLockRequired = true; this.syncAt = new Date(); this.type = enums_1.EAppMode.NATI_GO; this.updatedAt = new Date(); this.url = 'localhost:8080'; this.version = '1.0.0'; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return NatiGoEntity; }()); exports.NatiGoEntity = NatiGoEntity;