mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
29 lines (28 loc) • 988 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalSettingNatiPayEntity = void 0;
var general_1 = require("../../general");
var GlobalSettingNatiPayEntity = /** @class */ (function () {
// #endregion Properties (1)
// #region Constructors (1)
function GlobalSettingNatiPayEntity(data) {
// #region Properties (1)
this.id = '';
this.info = {
natiInfo: new general_1.InfoEntity(),
desenfilaInfo: new general_1.DesenfilaInfoEntity(),
mobyoInfo: new general_1.MobyoInfoEntity(),
userName: general_1.EFrom.NATIPAY,
email: '',
};
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return GlobalSettingNatiPayEntity;
}());
exports.GlobalSettingNatiPayEntity = GlobalSettingNatiPayEntity;