UNPKG

aade-mydata-client

Version:

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

20 lines (19 loc) 664 B
import { InvoiceSummaryType } from './InvoiceSummary'; import { TaxTotalsType } from './TaxTotals'; import { InvoiceRowType } from './InvoiceRow'; import { InvoiceHeaderType } from './InvoiceHeader'; import { PartyType } from './PartyType'; export declare class AadeBookInvoiceType { uid?: string; mark?: number; cancelledByMark?: number; authenticationCode?: string; issuer?: PartyType; counterpart?: PartyType; invoiceHeader: InvoiceHeaderType; paymentMethods?: any[]; invoiceDetails: InvoiceRowType[]; taxesTotals?: TaxTotalsType[]; invoiceSummary: InvoiceSummaryType; constructor(props?: AadeBookInvoiceType); }