UNPKG

scheunemann-interfaces

Version:
25 lines (24 loc) 764 B
"use strict"; 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;