digicust_types 1.8.214 → 1.8.216
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
|
|
1
1
|
import { DigicustDocumentModel } from "./digicust-document.model";
|
2
2
|
import { PreliminaryDocument } from "..";
|
3
|
-
import { CustomsOffice, Money, MeanOfTransportation, Meta, Incoterm, Weight, Package, AddressModel, DeclarationType, CompanyModel, Seal } from "../..";
|
3
|
+
import { CustomsOffice, Money, MeanOfTransportation, Meta, Incoterm, Weight, Package, AddressModel, DeclarationType, CompanyModel, Seal, LineItemModel } from "../..";
|
4
4
|
import { DateTimeModel, WeightUnit } from "../../measures";
|
5
5
|
/**
|
6
6
|
* Identifies an Email
|
@@ -40,6 +40,6 @@ export interface EmailDocument extends DigicustDocumentModel {
|
|
40
40
|
presentationDate?: DateTimeModel;
|
41
41
|
shippingDate?: DateTimeModel;
|
42
42
|
packages?: Package[];
|
43
|
-
|
43
|
+
items?: LineItemModel[];
|
44
44
|
seals?: Seal[];
|
45
45
|
}
|