digicust_types 1.7.525 → 1.7.528
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
|
|
1
1
|
import { DigicustDocumentModel } from "./digicust-document.model";
|
2
2
|
import { PreliminaryDocument } from "..";
|
3
3
|
import { CustomsOffice, Money, MeanOfTransportation, Meta, Incoterm, Weight, Package, AddressModel, DeclarationType, CompanyModel } from "../..";
|
4
|
-
import { WeightUnit } from "../../measures";
|
4
|
+
import { DateTimeModel, WeightUnit } from "../../measures";
|
5
5
|
/**
|
6
6
|
* Identifies an Email
|
7
7
|
*/
|
@@ -28,5 +28,6 @@ export interface EmailDocument extends DigicustDocumentModel {
|
|
28
28
|
weight?: Weight;
|
29
29
|
weightUnit?: Meta<WeightUnit>;
|
30
30
|
shipper?: CompanyModel;
|
31
|
+
shippingDate?: DateTimeModel;
|
31
32
|
packages?: Package[];
|
32
33
|
}
|