digicust_types 1.8.226 → 1.8.228
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Procedure, LoadType, Adjustment, Container, WaybillTypeModel, IncotermModel, CostIntersection, TradePreference, CustomsOffice, MeanOfTransportation, TypeOfBusiness, CaseType, LineItemModel, Package, Meta, AddressModel, DateTimeModel, CompanyModel, Currency, WeightUnit, Weight, Money, TransitItemModel, ConstellationOfParticipantsModel, Port, PreliminaryDocument, DeclarationType, PersonModel, Seal, TypeOfExportDeclarationModel, UnitOfMeasurement, CountrySpecificAggregated } from "..";
|
1
|
+
import { Procedure, LoadType, Adjustment, Container, WaybillTypeModel, IncotermModel, CostIntersection, TradePreference, CustomsOffice, MeanOfTransportation, TypeOfBusiness, CaseType, LineItemModel, Package, Meta, AddressModel, DateTimeModel, CompanyModel, Currency, WeightUnit, Weight, Money, TransitItemModel, ConstellationOfParticipantsModel, Port, PreliminaryDocument, DeclarationType, PersonModel, Seal, TypeOfExportDeclarationModel, UnitOfMeasurement, CountrySpecificAggregated, Quantity } from "..";
|
2
2
|
import { BuyerSellerRelationship } from "../customs/buyerSellerRelationship.model";
|
3
3
|
import { DomesticFreightCosts } from "../customs/domesticFreightCosts.model";
|
4
4
|
import { PaymentMethod } from "../customs/payment-method.model";
|
@@ -119,8 +119,9 @@ export interface AggregatedCaseDataModel {
|
|
119
119
|
tariffNumber: string;
|
120
120
|
alpha2Code: string;
|
121
121
|
description: string;
|
122
|
-
quantity:
|
122
|
+
quantity: Quantity;
|
123
123
|
itemSpecialUnit: UnitOfMeasurement;
|
124
|
+
itemSpecialUnitMeasure: Meta<number>;
|
124
125
|
}[];
|
125
126
|
countrySpecific?: CountrySpecificAggregated;
|
126
127
|
}
|