CarrierPriceSettlementDto
Carrier price settlement information for a freight
pricenumber<double>nullable
Settlement unit price
quantitynumber<double>nullable
Quantity to be multiplied by the unit price
fuelPercentagenumber<double>nullable
Fuel surcharge percentage applied to the unit price
Example:
12.5tollAndFerryCostnumber<double>nullable
Total toll and ferry costs in NOK
Example:
450totalLoadingTimeCostnumber<double>nullable
Total loading time cost in NOK
Example:
200totalUnloadingTimeCostnumber<double>nullable
Total unloading time cost in NOK
Example:
200additionalExpenses object[]nullable
Additional expenses not covered by the standard settlement fields
Array [
descriptionstringrequired
Description of the additional expense
Possible values: non-empty and <= 500 characters
Example:
Waiting time surchargeamountnumber<double>
Amount in NOK
Example:
350includeInFuelExpenseboolean
Whether this expense should be included in the fuel surcharge calculation
Example:
false]
finalboolean
If set to true the carrier settlement will be confirmed
CarrierPriceSettlementDto
{
"price": 0,
"quantity": 0,
"fuelPercentage": 12.5,
"tollAndFerryCost": 450,
"totalLoadingTimeCost": 200,
"totalUnloadingTimeCost": 200,
"additionalExpenses": [
{
"description": "Waiting time surcharge",
"amount": 350,
"includeInFuelExpense": false
}
],
"final": true
}