2022-01-08 02:29:24 +01:00
|
|
|
import * as business from './';
|
|
|
|
import * as finance from '../finance';
|
|
|
|
export interface ILetter {
|
|
|
|
incidenceId: string;
|
|
|
|
from: business.IAddress;
|
|
|
|
to: business.IAddress;
|
2022-01-08 04:20:35 +01:00
|
|
|
logoUrl: string;
|
|
|
|
accentColor: string;
|
2022-01-08 02:29:24 +01:00
|
|
|
subject: string;
|
|
|
|
text: string[];
|
|
|
|
invoice?: finance.IInvoice;
|
2022-01-08 04:19:18 +01:00
|
|
|
contractRef: string;
|
|
|
|
timesheetRef: string;
|
|
|
|
pdfAttachments: Uint8Array[];
|
2022-01-08 02:29:24 +01:00
|
|
|
legalContact: business.IContact;
|
2022-01-08 04:19:18 +01:00
|
|
|
language: string;
|
|
|
|
|
2022-01-08 02:29:24 +01:00
|
|
|
}
|