UNPKG

aade-mydata-client

Version:

Node.js Client for AADE myDATA (my Digital Accounting and Tax Application) REST API

23 lines (22 loc) 1.15 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InvoiceSummaryType = void 0; var InvoiceSummaryType = /** @class */ (function () { function InvoiceSummaryType(props) { var _a, _b; if (props) { this.totalNetValue = props.totalNetValue; this.totalVatAmount = props.totalVatAmount; this.totalWithheldAmount = props.totalWithheldAmount; this.totalFeesAmount = props.totalFeesAmount; this.totalStampDutyAmount = props.totalStampDutyAmount; this.totalOtherTaxesAmount = props.totalOtherTaxesAmount; this.totalDeductionsAmount = props.totalDeductionsAmount; this.totalGrossValue = props.totalGrossValue; this.incomeClassification = (_a = props.incomeClassification) === null || _a === void 0 ? void 0 : _a.map(function (o) { return o; }); this.expensesClassification = (_b = props.expensesClassification) === null || _b === void 0 ? void 0 : _b.map(function (o) { return o; }); } } return InvoiceSummaryType; }()); exports.InvoiceSummaryType = InvoiceSummaryType;