Skip to main content

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.5
tollAndFerryCostnumber<double>nullable

Total toll and ferry costs in NOK

Example: 450
totalLoadingTimeCostnumber<double>nullable

Total loading time cost in NOK

Example: 200
totalUnloadingTimeCostnumber<double>nullable

Total unloading time cost in NOK

Example: 200
additionalExpenses 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 surcharge
    amountnumber<double>

    Amount in NOK

    Example: 350
    includeInFuelExpenseboolean

    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
    }