UNPKG

scheunemann-interfaces

Version:
21 lines (20 loc) 635 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EvolutionHashEntity = void 0; var EvolutionHashEntity = /** @class */ (function () { // #endregion Properties (1) // #region Constructors (1) function EvolutionHashEntity(data) { // #region Properties (1) this.apikey = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return EvolutionHashEntity; }()); exports.EvolutionHashEntity = EvolutionHashEntity;