scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
28 lines (27 loc) • 813 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DesenfilaEntity = void 0;
var DesenfilaEntity = /** @class */ (function () {
// #endregion Properties (8)
// #region Constructors (1)
function DesenfilaEntity(data) {
// #region Properties (8)
this.balance = 0;
this.blockedBalance = 0;
this.config = null;
this.containerId = '';
this.fees = [];
this.goLive = false;
this.merchantId = '';
this.token = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return DesenfilaEntity;
}());
exports.DesenfilaEntity = DesenfilaEntity;