2022-04-28 12:18:26 +02:00
|
|
|
import * as business from './index.js';
|
|
|
|
import * as finance from '../finance/index.js';
|
2022-01-08 02:29:24 +01:00
|
|
|
export interface ILetter {
|
|
|
|
incidenceId: string;
|
2022-01-14 04:32:02 +01:00
|
|
|
date: number;
|
2022-01-14 06:12:27 +01:00
|
|
|
from: business.IContact;
|
|
|
|
to: business.IContact;
|
2022-01-08 04:20:35 +01:00
|
|
|
logoUrl: string;
|
|
|
|
accentColor: string;
|
2022-01-08 02:29:24 +01:00
|
|
|
subject: string;
|
|
|
|
text: string[];
|
2022-01-14 05:17:55 +01:00
|
|
|
invoiceData?: finance.IInvoice;
|
|
|
|
contractData?: {
|
|
|
|
id: string;
|
|
|
|
contractDate: number;
|
|
|
|
};
|
|
|
|
timesheetData: string;
|
2022-01-08 04:19:18 +01:00
|
|
|
pdfAttachments: Uint8Array[];
|
2022-01-08 02:29:24 +01:00
|
|
|
legalContact: business.IContact;
|
2022-01-08 04:19:18 +01:00
|
|
|
language: string;
|
2022-04-28 12:18:26 +02:00
|
|
|
}
|