cecon-interfaces
Version:
Interfaces de Projetos Cecon
22 lines (21 loc) • 662 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransactionPayerEntity = void 0;
var TransactionPayerEntity = /** @class */ (function () {
function TransactionPayerEntity(data) {
this.account = null;
this.bank = null;
this.branch = null;
this.name = null;
this.doc = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return TransactionPayerEntity;
}());
exports.TransactionPayerEntity = TransactionPayerEntity;