UNPKG

aade-mydata-client

Version:

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

26 lines (25 loc) 1.05 kB
import { ExpensesClassificationType } from './ExpensesClassification'; import { IncomeClassificationType } from './IncomeClassification'; export declare class InvoiceSummaryType { /** Σύνολο Καθαρής Αξίας */ totalNetValue: number; /** Σύνολο ΦΠΑ */ totalVatAmount: number; /** Σύνολο Παρακρατήσεων Φόρων */ totalWithheldAmount: number; /** Σύνολο Τελών */ totalFeesAmount: number; /** Σύνολο Χαρτοσήμου */ totalStampDutyAmount: number; /** Σύνολο Λοιπών Φόρων */ totalOtherTaxesAmount: number; /** Σύνολο Κρατήσεων */ totalDeductionsAmount: number; /** Συνολική Αξία */ totalGrossValue: number; /** Χαρακτηρισμοί Εσόδων */ incomeClassification?: IncomeClassificationType[]; /** Χαρακτηρισμοί Εξόδων */ expensesClassification?: ExpensesClassificationType[]; constructor(props?: InvoiceSummaryType); }