scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
24 lines (23 loc) • 732 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EvolutionQrcodeEntity = void 0;
var EvolutionQrcodeEntity = /** @class */ (function () {
// #endregion Properties (4)
// #region Constructors (1)
function EvolutionQrcodeEntity(data) {
// #region Properties (4)
this.base64 = null;
this.code = null;
this.count = 0;
this.pairingCode = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return EvolutionQrcodeEntity;
}());
exports.EvolutionQrcodeEntity = EvolutionQrcodeEntity;