cecon-interfaces
Version:
Interfaces de Projetos Cecon
26 lines (25 loc) • 811 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalSettingFirebankEntity = void 0;
var GlobalSettingFirebankEntity = /** @class */ (function () {
function GlobalSettingFirebankEntity(data) {
this.active = false;
this.apiKey = '';
this.baseUrl = '';
this.basicAuth64 = '';
this.fee = 0;
this.feeMode = 'FIXED';
this.id = 'FIREBANK';
this.password = '';
this.userName = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return GlobalSettingFirebankEntity;
}());
exports.GlobalSettingFirebankEntity = GlobalSettingFirebankEntity;