scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
20 lines (19 loc) • 608 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransactionTotalEntity = void 0;
var TransactionTotalEntity = /** @class */ (function () {
function TransactionTotalEntity(data) {
this.subTotal = 0;
this.fees = 0;
this.orderAmount = 0;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return TransactionTotalEntity;
}());
exports.TransactionTotalEntity = TransactionTotalEntity;