scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
33 lines (32 loc) • 1.05 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.EvolutionDatabaseQueueEntity = void 0;
var EvolutionDatabaseQueueEntity = /** @class */ (function () {
// #endregion Properties (11)
// #region Constructors (1)
function EvolutionDatabaseQueueEntity(data) {
// #region Properties (11)
this.active = true;
this.baseUrl = '';
this.createdAt = Date.now();
this.id = '';
this.instanceName = '';
this.globalApikey = '';
this.log = [];
this.sendAt = 1713547959155;
this.notified = false;
this.notifiedAt = 0;
this.phoneNumber = '';
this.text = '';
this.updatedAt = Date.now();
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return EvolutionDatabaseQueueEntity;
}());
exports.EvolutionDatabaseQueueEntity = EvolutionDatabaseQueueEntity;