digicust_types 1.8.238 → 1.8.240
Sign up to get free protection for your applications and to get access to all the features.
@@ -20,6 +20,7 @@ export interface EmailDocument extends DigicustDocumentModel {
|
|
20
20
|
requestedReference?: Meta<string>;
|
21
21
|
preliminaryDocuments?: PreliminaryDocument[];
|
22
22
|
customsOffice?: CustomsOffice;
|
23
|
+
exportCustomsOffice?: CustomsOffice;
|
23
24
|
entryCustomsOffice?: CustomsOffice;
|
24
25
|
exitCustomsOffice?: CustomsOffice;
|
25
26
|
freightCosts?: Money;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { DigicustDocumentModel } from "./digicust-document.model";
|
2
2
|
import { LineItemContainingDocument, InvoiceType, DocumentLanguage, Distributions } from "..";
|
3
|
-
import { CompanyModel, LanguageModel, Meta, DateTimeModel, TypeOfBusiness, MeanOfTransportation, IncotermModel, AddressModel, CustomsTariffNumber, TradePreference, Weight, WeightUnit, PackageType, Dimensions, Package, Money, Currency, TaxDetailsModel, Port } from "../..";
|
3
|
+
import { CompanyModel, LanguageModel, Meta, DateTimeModel, TypeOfBusiness, MeanOfTransportation, IncotermModel, AddressModel, CustomsTariffNumber, TradePreference, Weight, WeightUnit, PackageType, Dimensions, Package, Money, Currency, TaxDetailsModel, Port, Container } from "../..";
|
4
4
|
/**
|
5
5
|
* Identifies an invoice
|
6
6
|
*/
|
@@ -19,6 +19,7 @@ export interface InvoiceModel extends DigicustDocumentModel, LineItemContainingD
|
|
19
19
|
waybillNumber?: Meta<string>;
|
20
20
|
deliveryNote?: Meta<string>;
|
21
21
|
packingList?: Meta<string>;
|
22
|
+
containers?: Container[];
|
22
23
|
typeOfBusiness?: TypeOfBusiness;
|
23
24
|
portOfExport?: Port;
|
24
25
|
portOfImport?: Port;
|