UNPKG

cecon-interfaces

Version:
26 lines (25 loc) 764 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BillingTotalEntity = void 0; var BillingTotalEntity = /** @class */ (function () { // #endregion Properties (6) // #region Constructors (1) function BillingTotalEntity(data) { // #region Properties (6) this.addition = 0; this.cancelled = 0; this.discount = 0; this.subtotal = 0; this.tax = 0; this.totalAmount = 0; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return BillingTotalEntity; }()); exports.BillingTotalEntity = BillingTotalEntity;