data-validator-js
Version:
Validation Methods for all types of Data
17 lines (16 loc) • 591 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Transaction = /** @class */ (function () {
function Transaction(id, products, totalAmount, paidWith, dueAmount, customerId, customer, transactionDate) {
this.id = id;
this.products = products;
this.totalAmount = totalAmount;
this.paidWith = paidWith;
this.dueAmount = dueAmount;
this.customerId = customerId;
this.customer = customer;
this.transactionDate = transactionDate;
}
return Transaction;
}());
exports.default = Transaction;