digicust_types 1.8.267 → 1.8.268
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/models/digicust/documents/document-types/index.d.ts +1 -0
- package/lib/models/digicust/documents/document-types/index.js +1 -0
- package/lib/models/digicust/documents/document-types/weighing-certificate.d.ts +13 -0
- package/lib/models/digicust/documents/document-types/weighing-certificate.js +2 -0
- package/package.json +1 -1
@@ -30,3 +30,4 @@ __exportStar(require("./eur1.model"), exports);
|
|
30
30
|
__exportStar(require("./transit-declaration.model"), exports);
|
31
31
|
__exportStar(require("./export-list"), exports);
|
32
32
|
__exportStar(require("./case-reference.model"), exports);
|
33
|
+
__exportStar(require("./weighing-certificate"), exports);
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { DateTimeModel, Weight } from "../../measures";
|
2
|
+
import { Meta } from "../../meta";
|
3
|
+
import { MeanOfTransportation } from "../../transportation";
|
4
|
+
import { DigicustDocumentModel } from "./digicust-document.model";
|
5
|
+
/**
|
6
|
+
* Identifies an export list document (Ausfuhrliste)
|
7
|
+
*/
|
8
|
+
export interface WeighingCertificate extends DigicustDocumentModel {
|
9
|
+
weightCertificateNumber?: Meta<string>;
|
10
|
+
issueDate?: DateTimeModel;
|
11
|
+
meanOfTransportation?: MeanOfTransportation;
|
12
|
+
netWeight?: Weight;
|
13
|
+
}
|