digicust_types 1.8.161 → 1.8.163
Sign up to get free protection for your applications and to get access to all the features.
@@ -6,7 +6,7 @@ export interface CustomsTariffNumber extends Meta<string> {
|
|
6
6
|
toBeProcessed?: boolean;
|
7
7
|
classificationType?: ClassificationTypes;
|
8
8
|
};
|
9
|
-
userEdited
|
9
|
+
userEdited?: boolean;
|
10
10
|
additionalCodes?: Meta<string>[];
|
11
11
|
hsCodeInvoice?: Meta<string>;
|
12
12
|
customsDescription?: string;
|
@@ -10,6 +10,9 @@ export interface EmailDocument extends DigicustDocumentModel {
|
|
10
10
|
sender?: string;
|
11
11
|
body?: string;
|
12
12
|
transitCountries?: AddressModel[];
|
13
|
+
documents?: (DigicustDocumentModel & {
|
14
|
+
belongsTo: string;
|
15
|
+
})[];
|
13
16
|
preliminaryDocuments?: PreliminaryDocument[];
|
14
17
|
customsOffice?: CustomsOffice;
|
15
18
|
entryCustomsOffice?: CustomsOffice;
|