digicust_types 1.8.15 → 1.8.17
Sign up to get free protection for your applications and to get access to all the features.
@@ -28,6 +28,7 @@ export interface AggregatedCaseDataModel {
|
|
28
28
|
registrationDate?: DateTimeModel;
|
29
29
|
duration?: Meta<number>;
|
30
30
|
preliminaryDocuments?: PreliminaryDocument[];
|
31
|
+
endClient?: CompanyModel;
|
31
32
|
consignee?: CompanyModel;
|
32
33
|
shipper?: CompanyModel;
|
33
34
|
exporter?: CompanyModel;
|
@@ -23,6 +23,12 @@ export interface DocumentTypeCode {
|
|
23
23
|
deductionAmount?: Quantity;
|
24
24
|
qualifier?: string;
|
25
25
|
}
|
26
|
+
export interface DocumentCodeType extends DocumentCode, Workflow<DigicustDocumentType> {
|
27
|
+
procedure?: ProcedureMode | "any";
|
28
|
+
reference?: string;
|
29
|
+
description?: string;
|
30
|
+
issuingDate?: DateTimeModel;
|
31
|
+
}
|
26
32
|
export interface ItemCountryOfOrigin {
|
27
33
|
country?: Workflow<string>;
|
28
34
|
documentId?: string;
|
@@ -133,12 +139,7 @@ export interface MaterialModel {
|
|
133
139
|
name: string;
|
134
140
|
}[];
|
135
141
|
unitOfMeasurement?: Workflow<UOM>;
|
136
|
-
documentTypeCodes?:
|
137
|
-
procedure?: ProcedureMode | "any";
|
138
|
-
reference?: string;
|
139
|
-
description?: string;
|
140
|
-
issuingDate?: DateTimeModel;
|
141
|
-
} & Workflow<DigicustDocumentType>)[];
|
142
|
+
documentTypeCodes?: DocumentCodeType[];
|
142
143
|
CAS?: Workflow<string>;
|
143
144
|
units?: Workflow<{
|
144
145
|
number?: number;
|