digicust_types 1.7.372 → 1.7.376
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { DigicustDocumentModel } from "./digicust-document.model";
|
|
2
2
|
import { LineItemContainingDocument } from "..";
|
|
3
|
-
import { CompanyModel, CustomsOffice, AddressModel, Meta, WeightUnit, Weight, MeanOfTransportation, Package } from "../..";
|
|
3
|
+
import { CompanyModel, CustomsOffice, AddressModel, Meta, WeightUnit, Weight, MeanOfTransportation, Package, IncotermModel, Money, Currency } from "../..";
|
|
4
4
|
/**
|
|
5
5
|
* Identifies an Export Declaration
|
|
6
6
|
*/
|
|
7
7
|
export interface ExportDeclaration extends DigicustDocumentModel, LineItemContainingDocument {
|
|
8
|
+
exportDeclarationType?: "German" | "Turkish";
|
|
8
9
|
shipper?: CompanyModel;
|
|
9
10
|
recipient?: CompanyModel;
|
|
10
11
|
applicant?: CompanyModel;
|
|
@@ -21,9 +22,13 @@ export interface ExportDeclaration extends DigicustDocumentModel, LineItemContai
|
|
|
21
22
|
weightUnit?: Meta<WeightUnit>;
|
|
22
23
|
totalGrossWeight?: Weight;
|
|
23
24
|
totalNetWeight?: Weight;
|
|
25
|
+
totalValue?: Money;
|
|
26
|
+
currency?: Meta<Currency>;
|
|
24
27
|
meansOfTransportation?: MeanOfTransportation[];
|
|
25
28
|
customsSealNumber?: Meta<string>;
|
|
26
29
|
goodsLocation?: AddressModel;
|
|
30
|
+
incoterm?: IncotermModel;
|
|
31
|
+
placeIncoterm?: AddressModel;
|
|
27
32
|
packages?: Package[];
|
|
28
33
|
numPackages?: Meta<number>;
|
|
29
34
|
}
|