UNPKG

component-dbs-core

Version:

DTO objects shared among device backend

31 lines 1.26 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TransactionDto = void 0; class TransactionDto { constructor(id, deviceUuid, entityUuid, siteUuid, timestamp, transactionType, status, maskedPan, reference, amount, deviceName, siteName, saleAmount, tipAmount, feeAmount, taxAmounts, surchargeAmount, scheme, depositUuid, depositDate, panToken, par) { this.id = id; this.deviceUuid = deviceUuid; this.entityUuid = entityUuid; this.siteUuid = siteUuid; this.timestamp = timestamp; this.transactionType = transactionType; this.status = status; this.maskedPan = maskedPan; this.reference = reference; this.amount = amount; this.deviceName = deviceName; this.siteName = siteName; this.saleAmount = saleAmount; this.tipAmount = tipAmount; this.feeAmount = feeAmount; this.taxAmounts = taxAmounts; this.surchargeAmount = surchargeAmount; this.scheme = scheme; this.depositUuid = depositUuid; this.depositDate = depositDate; this.panToken = panToken; this.par = par; } } exports.TransactionDto = TransactionDto; //# sourceMappingURL=transactionDto.js.map