scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
26 lines (25 loc) • 809 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MobyoApiConfigEntity = void 0;
var MobyoApiConfigEntity = /** @class */ (function () {
// #endregion Properties (6)
// #region Constructors (1)
function MobyoApiConfigEntity(data) {
// #region Properties (6)
this.hasIntegration = false;
this.hasPrint = false;
this.integrationUrl = '';
this.printCols = 40;
this.printInterface = '';
this.printType = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return MobyoApiConfigEntity;
}());
exports.MobyoApiConfigEntity = MobyoApiConfigEntity;