UNPKG

data-validator-js

Version:
17 lines (16 loc) 591 B
"use strict"; 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;