scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
25 lines (24 loc) • 764 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EvolutionChatWootEntity = void 0;
var EvolutionChatWootEntity = /** @class */ (function () {
function EvolutionChatWootEntity(data) {
// #region Properties (7)
this.accountId = '';
this.enabled = false;
this.nameInbox = '';
this.signMsg = false;
this.token = '';
this.url = '';
this.webhookUrl = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return EvolutionChatWootEntity;
}());
exports.EvolutionChatWootEntity = EvolutionChatWootEntity;