scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
30 lines (29 loc) • 934 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.EvolutionInstanceEntity = void 0;
var EvolutionInstanceEntity = /** @class */ (function () {
// #endregion Properties (10)
// #region Constructors (1)
function EvolutionInstanceEntity(data) {
// #region Properties (10)
this.apikey = '';
this.chatwoot = null;
this.instanceId = '';
this.instanceName = '';
this.owner = '';
this.profileName = '';
this.profilePictureUrl = '';
this.profileStatus = '';
this.serverUrl = '';
this.status = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return EvolutionInstanceEntity;
}());
exports.EvolutionInstanceEntity = EvolutionInstanceEntity;