cecon-interfaces
Version:
Interfaces de Projetos Cecon
29 lines (28 loc) • 814 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NatipayEntity = void 0;
/**
* @deprecated
* Esta classe está obsoleta. Use a propriedade fees para saber a conta do marketplace.
*/
var NatipayEntity = /** @class */ (function () {
function NatipayEntity(data) {
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 NatipayEntity;
}());
exports.NatipayEntity = NatipayEntity;