export interface ITextWordInvoice {
    invoiceTitle: string;
    invoiceBuyerTitle: string;
    invoiceSellerTitle: string;
    vatId: string;
    detailsInvoiceNumber: string;
    detailsInvoiceDate: string;
    detailsPaymentDueDate: string;
    detailsCurrencyCode: string;
    detailsPaymentTerms: string;
    referencesTopic: string;
    referencesBuyerReference: string;
    referencesProjectReference: string;
    referencesContractReference: string;
    referencesPurchaseOrderReference: string;
    referencesSalesOrderReference: string;
    referencesReceivingAdviceReference: string;
    referencesDispatchAdviceReference: string;
    referencesTenderOrLotReference: string;
    referencesInvoicedObjectIdentifier: string;
    tableHeadDescription: string;
    tableHeadQuantity: string;
    tableHeadUnit: string;
    tableHeadNetPrice: string;
    tableHeadNetAmount: string;
    totalsTopic: string;
    totalsTotalNet: string;
    totalsTotalAllowances: string;
    totalsTotalCharges: string;
    totalsTotalAfterDeductions: string;
    totalsTotalVatAmount: string;
    totalsTotalGross: string;
    totalsAlreadyPaidTotal: string;
    totalsTotalToBePaid: string;
    instructionsTopic: string;
    instructionsAccountIdentifier: string;
    instructionsAccountName: string;
    instructionsServiceProviderIdentifier: string;
    notesTopic: string;
    attachmentsHeading: string;
    attachmentsName: string;
    attachmentsDescription: string;
    attachmentsUrl: string;
    attachmentsDataSize: string;
    attachmentsMimeType: string;
    attachmentsFileName: string;
    attachmentsDownloadButton: string;
    contactPersonName: string;
    contactPersonPhone: string;
    contactPersonEmail: string;
    vat: string;
    taxRate: string;
    taxesHeading: string;
    deliveryInformationTitle: string;
    deliverToName: string;
    deliverToLocationIdentifier: string;
    deliveryDate: string;
    deliveryAddress: string;
    invoiceAllowancesHeader: string;
    invoiceAllowancesTableHeaderSum: string;
    invoiceAllowancesTableHeaderVatRate: string;
    invoiceAllowancesTableHeaderAllowance: string;
    invoiceAllowancesTableHeaderBase: string;
    invoiceChargesHeader: string;
    invoiceChargesTableHeaderSum: string;
    invoiceChargesTableHeaderVatRate: string;
    invoiceChargesTableHeaderCharge: string;
    invoiceChargesTableHeaderBase: string;
    lineItemDiscount: string;
    lineItemCharges: string;
    lineItemAllowances: string;
    lineItemReason: string;
}
