POST api/v1/engine?databaseCode={databaseCode}

For backward compatibility. The DatabaseCode URI parameter is deprecated and will be removed. Please use the QueryData.DatabaseCode body parameter instead.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
databaseCode

This parameter is deprecated and will be removed. Please use the QueryData.DatabaseCode parameter instead.

string

Required

Body Parameters

The object that has all the query parameters.

QueryData
NameDescriptionTypeAdditional information
DatabaseCode

The code that identifies the database to connect to. When using Engine 7 only the customer database code is required (for example: ACME-TEST). When using Engine 8 both the Engine 8 database code and the customer database code are required (for Example: ENGINE-V8-DB-TEST;ACME-TEST). If only the customer database code is provided, then the default Engine 8 database for the current environment will be used.

string

Required

DivisionCode

The code that identifies the business division to which the shipment (or route) belongs. Only freight rates and surcharges linked to this division will be returned.

string

Required

DivisionGroupCode

The code that identifies the group of this business division.

string

None.

DivisionCountryCode

The code that identifies the country of this business division.

string

None.

TargetCurrencyCode

The 3-letter ISO code of the target currency. If NOT set, then the default value is "EUR".

string

None.

Shipment

The data of the shipment and its packages.

Shipment

None.

Route

The data of the route and its stops. If set, then the shipment object is ignored and the route cost is calculated instead.

Route

None.

ContractTypeCodes

The codes of the requested types of contracts. These values indicate the kind of freight rates and surcharges to look for. Do NOT set this value to look for all freight rates and surcharges.

Collection of string

None.

ForwarderCodes

The codes of the requested forwarders. Do NOT set this value to look for freight rates of all forwarders.

Collection of string

None.

ServiceCodes

The codes of the requested services. Do NOT set this value to look for freight rates of all services.

Collection of string

None.

ServiceGroupCodes

The codes of the requested service-groups. Do NOT set this value to look for freight rates of all services.

Collection of string

None.

ExcludeSurchargeCodes

The codes of the surcharges to be excluded. Two wildcards are allowed: The asterisk (*) meaning "any string of zero or more characters", and the question mark (?) meaning "any single character".

Collection of string

None.

IncotermCode

The code of the requested INCOTERM. Do NOT set this value to look for freight rates of any INCOTERM. This is also used to determine which surcharges are applicable.

string

None.

ChargeableFactorCode

The code of the requested chargeable factor. Indicates the dimension used to calculate the freight rate. Shipment freight rates are based on "PACKAGE-COUNT" or "WEIGHT". Route freight rates are based on "DISTANCE" or "TIME". Do NOT set this value to look for freight rates of any chargeable factor.

string

None.

RateCode

The code of the requested freight rate. Set this value to look for a specific freight rate. Do NOT set this value to look for all freight rates

string

None.

ExchangeRates

A collection of exchange rates (as currency codes and their values). Exchange rates must be quoted against the TargetCurrencyCode parameter.

Dictionary of string [key] and decimal number [value]

None.

Settings

A collection of setting keys and their values. Examples: "bookingCutOffTime", "calculateCostPerPackage", "calculateCostPerShipment", "calculateCostPerStop", "currentDateTime", "includeAllIncoterms", "returnMoreInfo".

Dictionary of string [key] and string [value]

None.

EngineDataVersion

The version of the TranspariX.Engine.DataClasses project.

string

None.

Request Formats

application/json, text/json

Sample:
{
  "databaseCode": "sample string 1",
  "divisionCode": "sample string 2",
  "divisionGroupCode": "sample string 3",
  "divisionCountryCode": "sample string 4",
  "targetCurrencyCode": "sample string 5",
  "shipment": null,
  "route": null,
  "contractTypeCodes": [
    "sample string 1",
    "sample string 2"
  ],
  "forwarderCodes": [
    "sample string 1",
    "sample string 2"
  ],
  "serviceCodes": [
    "sample string 1",
    "sample string 2"
  ],
  "serviceGroupCodes": [
    "sample string 1",
    "sample string 2"
  ],
  "excludeSurchargeCodes": [
    "sample string 1",
    "sample string 2"
  ],
  "incotermCode": "sample string 6",
  "chargeableFactorCode": "sample string 7",
  "rateCode": "sample string 8",
  "exchangeRates": {
    "sample string 1": 2.0,
    "sample string 3": 4.0
  },
  "settings": {
    "sample string 1": "sample string 2",
    "sample string 3": "sample string 4"
  },
  "engineDataVersion": "1.20.7.2"
}

application/xml, text/xml

Sample:
<QueryData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TranspariX.Engine.DataClasses">
  <ChargeableFactorCode>sample string 7</ChargeableFactorCode>
  <ContractTypeCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ContractTypeCodes>
  <DatabaseCode>sample string 1</DatabaseCode>
  <DivisionCode>sample string 2</DivisionCode>
  <DivisionCountryCode>sample string 4</DivisionCountryCode>
  <DivisionGroupCode>sample string 3</DivisionGroupCode>
  <ExchangeRates xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringdecimal>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value>2</d2p1:Value>
    </d2p1:KeyValueOfstringdecimal>
    <d2p1:KeyValueOfstringdecimal>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value>4</d2p1:Value>
    </d2p1:KeyValueOfstringdecimal>
  </ExchangeRates>
  <ExcludeSurchargeCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ExcludeSurchargeCodes>
  <ForwarderCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ForwarderCodes>
  <IncotermCode>sample string 6</IncotermCode>
  <RateCode>sample string 8</RateCode>
  <Route i:nil="true" />
  <ServiceCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ServiceCodes>
  <ServiceGroupCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ServiceGroupCodes>
  <Settings xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value>sample string 2</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value>sample string 4</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </Settings>
  <Shipment i:nil="true" />
  <TargetCurrencyCode>sample string 5</TargetCurrencyCode>
</QueryData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultData
NameDescriptionTypeAdditional information
ForwarderServices

The list of forwarder service alternatives. Each alternative includes contract, service, rate, restriction and surcharge data.

Collection of ForwarderService

None.

ShipmentCostBreakdown

The shipment cost breakdown information.

ShipmentCostBreakdown

None.

RouteCostBreakdown

The route cost breakdown information.

RouteCostBreakdown

None.

EngineDataVersion

The version of the TranspariX.Engine.DataClasses project.

string

None.

EngineVersion

The version of the TranspariX Engine.

string

None.

PerformanceInfo

Information about the Engine performance.

PerformanceInfo

None.

EventLog

If "enableLogging" is "true", then this (debug) event-log is returned.

EventLog

None.

Response Formats

application/json, text/json

Sample:
{
  "forwarderServices": [
    {
      "enabled": true,
      "enabledStateRemarks": "sample string 2",
      "rateId": 3,
      "rateCode": "sample string 4",
      "contractTypeCode": "sample string 5",
      "forwarderCode": "sample string 6",
      "serviceCode": "sample string 7",
      "incotermCode": "sample string 8",
      "residential": true,
      "commercial": true,
      "sortingPointCode": "sample string 11",
      "transitTime": 1,
      "estimatedPickupDate": "2025-04-19",
      "estimatedDeliveryDate": "2025-04-19",
      "deliveryTimeStart": "00:00:00.1234567",
      "deliveryTimeEnd": "00:00:00.1234567",
      "currencyCodeBeforeExchange": "sample string 14",
      "freightRateBeforeExchange": 1.0,
      "currencyCode": "sample string 15",
      "freightRate": 1.0,
      "totalSurcharge": 1.0,
      "totalCost": 1.0,
      "chargeableFactorCode": "sample string 16",
      "matchQuality": {
        "value": 1.0,
        "pickupDateIsOK": true,
        "pickupTimeIsOK": true,
        "deliveryDateIsOK": true,
        "deliveryTimeIsOK": true,
        "dgClassesAreOK": true,
        "unNumbersAreOK": true,
        "chargeableFactorValueIsInRange": true,
        "thereAreNoRestrictions": true,
        "freightRateCurrencyExchangeIsOK": true,
        "surchargeCurrencyExchangeIsOK": true,
        "divisionMatchLevel": "sample string 12"
      },
      "lanes": [
        {
          "laneId": 1,
          "laneCode": "sample string 2",
          "enabled": true,
          "enabledStateRemarks": "sample string 4",
          "pickupZone": {
            "zoneCode": "sample string 1",
            "countryCode": "sample string 2",
            "postalCodeStart": "sample string 3",
            "postalCodeEnd": "sample string 4"
          },
          "deliveryZone": {
            "zoneCode": "sample string 1",
            "countryCode": "sample string 2",
            "postalCodeStart": "sample string 3",
            "postalCodeEnd": "sample string 4"
          },
          "legs": [
            {
              "legNumber": 1,
              "legId": 2,
              "legCode": "sample string 3",
              "originTypeCode": "sample string 4",
              "destinationTypeCode": "sample string 5",
              "originZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "destinationZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "originShippingPointId": 6,
              "originShippingPointCode": "sample string 7",
              "destinationShippingPointId": 8,
              "destinationShippingPointCode": "sample string 9",
              "transitTime": 10,
              "holidayCheck": "sample string 11",
              "estimatedDepartureDate": "2025-04-19",
              "estimatedArrivalDate": "2025-04-19",
              "serviceSchedule": {
                "serviceScheduleId": 1,
                "cutoffTime": "00:00:00.1234567",
                "pickupDays": "sample string 2",
                "transitDays": "sample string 3",
                "deliveryDays": "sample string 4",
                "pickupTimeStart": "00:00:00.1234567",
                "pickupTimeEnd": "00:00:00.1234567",
                "deliveryTimeStart": "00:00:00.1234567",
                "deliveryTimeEnd": "00:00:00.1234567"
              },
              "fileName": "sample string 14",
              "sheetName": "sample string 15"
            },
            {
              "legNumber": 1,
              "legId": 2,
              "legCode": "sample string 3",
              "originTypeCode": "sample string 4",
              "destinationTypeCode": "sample string 5",
              "originZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "destinationZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "originShippingPointId": 6,
              "originShippingPointCode": "sample string 7",
              "destinationShippingPointId": 8,
              "destinationShippingPointCode": "sample string 9",
              "transitTime": 10,
              "holidayCheck": "sample string 11",
              "estimatedDepartureDate": "2025-04-19",
              "estimatedArrivalDate": "2025-04-19",
              "serviceSchedule": {
                "serviceScheduleId": 1,
                "cutoffTime": "00:00:00.1234567",
                "pickupDays": "sample string 2",
                "transitDays": "sample string 3",
                "deliveryDays": "sample string 4",
                "pickupTimeStart": "00:00:00.1234567",
                "pickupTimeEnd": "00:00:00.1234567",
                "deliveryTimeStart": "00:00:00.1234567",
                "deliveryTimeEnd": "00:00:00.1234567"
              },
              "fileName": "sample string 14",
              "sheetName": "sample string 15"
            }
          ],
          "fileName": "sample string 5",
          "sheetName": "sample string 6"
        },
        {
          "laneId": 1,
          "laneCode": "sample string 2",
          "enabled": true,
          "enabledStateRemarks": "sample string 4",
          "pickupZone": {
            "zoneCode": "sample string 1",
            "countryCode": "sample string 2",
            "postalCodeStart": "sample string 3",
            "postalCodeEnd": "sample string 4"
          },
          "deliveryZone": {
            "zoneCode": "sample string 1",
            "countryCode": "sample string 2",
            "postalCodeStart": "sample string 3",
            "postalCodeEnd": "sample string 4"
          },
          "legs": [
            {
              "legNumber": 1,
              "legId": 2,
              "legCode": "sample string 3",
              "originTypeCode": "sample string 4",
              "destinationTypeCode": "sample string 5",
              "originZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "destinationZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "originShippingPointId": 6,
              "originShippingPointCode": "sample string 7",
              "destinationShippingPointId": 8,
              "destinationShippingPointCode": "sample string 9",
              "transitTime": 10,
              "holidayCheck": "sample string 11",
              "estimatedDepartureDate": "2025-04-19",
              "estimatedArrivalDate": "2025-04-19",
              "serviceSchedule": {
                "serviceScheduleId": 1,
                "cutoffTime": "00:00:00.1234567",
                "pickupDays": "sample string 2",
                "transitDays": "sample string 3",
                "deliveryDays": "sample string 4",
                "pickupTimeStart": "00:00:00.1234567",
                "pickupTimeEnd": "00:00:00.1234567",
                "deliveryTimeStart": "00:00:00.1234567",
                "deliveryTimeEnd": "00:00:00.1234567"
              },
              "fileName": "sample string 14",
              "sheetName": "sample string 15"
            },
            {
              "legNumber": 1,
              "legId": 2,
              "legCode": "sample string 3",
              "originTypeCode": "sample string 4",
              "destinationTypeCode": "sample string 5",
              "originZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "destinationZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "originShippingPointId": 6,
              "originShippingPointCode": "sample string 7",
              "destinationShippingPointId": 8,
              "destinationShippingPointCode": "sample string 9",
              "transitTime": 10,
              "holidayCheck": "sample string 11",
              "estimatedDepartureDate": "2025-04-19",
              "estimatedArrivalDate": "2025-04-19",
              "serviceSchedule": {
                "serviceScheduleId": 1,
                "cutoffTime": "00:00:00.1234567",
                "pickupDays": "sample string 2",
                "transitDays": "sample string 3",
                "deliveryDays": "sample string 4",
                "pickupTimeStart": "00:00:00.1234567",
                "pickupTimeEnd": "00:00:00.1234567",
                "deliveryTimeStart": "00:00:00.1234567",
                "deliveryTimeEnd": "00:00:00.1234567"
              },
              "fileName": "sample string 14",
              "sheetName": "sample string 15"
            }
          ],
          "fileName": "sample string 5",
          "sheetName": "sample string 6"
        }
      ],
      "moreInfo": {
        "contractDateStart": "2025-04-19",
        "contractDateEnd": "2025-04-19",
        "bookingCutOffTime": "00:00:00.1234567",
        "bookingCutOffTimeSource": "sample string 3",
        "pickupDays": "sample string 4",
        "transitDays": "sample string 5",
        "deliveryDays": "sample string 6",
        "saturdayDelivery": true,
        "holidayCheck": "sample string 8",
        "pickupZone": {
          "zoneCode": "sample string 1",
          "countryCode": "sample string 2",
          "postalCodeStart": "sample string 3",
          "postalCodeEnd": "sample string 4"
        },
        "deliveryZone": {
          "zoneCode": "sample string 1",
          "countryCode": "sample string 2",
          "postalCodeStart": "sample string 3",
          "postalCodeEnd": "sample string 4"
        },
        "acceptableDgClasses": [
          "sample string 1",
          "sample string 2"
        ],
        "acceptableUnNumbers": [
          "sample string 1",
          "sample string 2"
        ],
        "fileName": "sample string 9",
        "sheetName": "sample string 10",
        "uomInfo": null,
        "rateCalculation": {
          "chargeableFactorCode": "sample string 1",
          "chargeableFactorStart": 2.0,
          "chargeableFactorEnd": 3.0,
          "chargeableFactorValue": 4.0,
          "chargeableUnit": 1.0,
          "chargeableUnitCount": 1.0,
          "baseCharge": 5.0,
          "chargePerUnit": 1.0,
          "isChargePerExtraUnit": true,
          "minCharge": 1.0,
          "minChargePerPackage": 1.0,
          "packageRateCalculations": [
            {
              "chargeableFactorCode": "sample string 1",
              "chargeableFactorStart": 2.0,
              "chargeableFactorEnd": 3.0,
              "chargeableFactorValue": 4.0,
              "chargeableUnit": 1.0,
              "chargeableUnitCount": 1.0,
              "baseCharge": 5.0,
              "chargePerUnit": 1.0,
              "isChargePerExtraUnit": true,
              "minCharge": 1.0
            },
            {
              "chargeableFactorCode": "sample string 1",
              "chargeableFactorStart": 2.0,
              "chargeableFactorEnd": 3.0,
              "chargeableFactorValue": 4.0,
              "chargeableUnit": 1.0,
              "chargeableUnitCount": 1.0,
              "baseCharge": 5.0,
              "chargePerUnit": 1.0,
              "isChargePerExtraUnit": true,
              "minCharge": 1.0
            }
          ]
        },
        "rounding": {
          "roundingCode": "sample string 1",
          "decimalPlacesForDimension": 1,
          "decimalPlacesForLoadingLength": 1,
          "decimalPlacesForVolume": 1,
          "decimalPlacesForWeight": 1
        },
        "weightCalculation": {
          "chargeableWeightCode": "sample string 1",
          "chargeableWeight": 2.0,
          "chargeableWeightUOM": "sample string 3",
          "actualWeight": 4.0,
          "actualWeightUOM": "sample string 5",
          "loadingLengthWeightMultiplier": 1.0,
          "loadingLengthWeightMultiplierUOM": "sample string 6",
          "loadingLengthWeight": 7.0,
          "loadingLengthWeightUOM": "sample string 8",
          "volumeWeightMultiplier": 1.0,
          "volumeWeightMultiplierUOM": "sample string 9",
          "volumeWeightThreshold": 1.0,
          "volumeWeightThresholdUOM": "sample string 10",
          "volumeWeight": 11.0,
          "volumeWeightUOM": "sample string 12",
          "oversizePackageLengthThreshold": 1.0,
          "oversizePackageLengthThresholdUOM": "sample string 13",
          "oversizePackageLengthGirthThreshold": 1.0,
          "oversizePackageLengthGirthThresholdUOM": "sample string 14",
          "oversizePackageMinChargeableWeight": 1.0,
          "oversizePackageMinChargeableWeightUOM": "sample string 15",
          "packageWeightCalculations": [
            {
              "chargeableWeightCode": "sample string 1",
              "chargeableWeight": 2.0,
              "chargeableWeightUOM": "sample string 3",
              "actualWeight": 4.0,
              "actualWeightUOM": "sample string 5",
              "length": 6.0,
              "width": 7.0,
              "height": 8.0,
              "dimensionUOM": "sample string 9",
              "volume": 10.0,
              "volumeUOM": "sample string 11",
              "volumeWeight": 12.0,
              "volumeWeightUOM": "sample string 13"
            },
            {
              "chargeableWeightCode": "sample string 1",
              "chargeableWeight": 2.0,
              "chargeableWeightUOM": "sample string 3",
              "actualWeight": 4.0,
              "actualWeightUOM": "sample string 5",
              "length": 6.0,
              "width": 7.0,
              "height": 8.0,
              "dimensionUOM": "sample string 9",
              "volume": 10.0,
              "volumeUOM": "sample string 11",
              "volumeWeight": 12.0,
              "volumeWeightUOM": "sample string 13"
            }
          ]
        },
        "restrictions": [
          {
            "enabled": true,
            "restrictionId": 2,
            "restrictionCode": "sample string 3",
            "appliesToAllPackageTypes": true,
            "appliesToAllServiceLevels": true,
            "appliesToAllGoodsClassifications": true,
            "fileName": "sample string 7",
            "sheetName": "sample string 8",
            "restrictionCondition": {
              "conditionFormula": "sample string 1",
              "subconditionAtPackageLevel": "sample string 2",
              "subconditionAtShipmentLevel": "sample string 3",
              "subconditionOperator": "sample string 4",
              "hasBeenMet": true
            },
            "restrictedServiceLevel": true,
            "restrictedGoodsClassification": true,
            "restrictedDimension": true,
            "uomInfo": {
              "weightUOM": null,
              "volumeUOM": null,
              "dimensionUOM": null,
              "distanceUOM": null
            }
          },
          {
            "enabled": true,
            "restrictionId": 2,
            "restrictionCode": "sample string 3",
            "appliesToAllPackageTypes": true,
            "appliesToAllServiceLevels": true,
            "appliesToAllGoodsClassifications": true,
            "fileName": "sample string 7",
            "sheetName": "sample string 8",
            "restrictionCondition": {
              "conditionFormula": "sample string 1",
              "subconditionAtPackageLevel": "sample string 2",
              "subconditionAtShipmentLevel": "sample string 3",
              "subconditionOperator": "sample string 4",
              "hasBeenMet": true
            },
            "restrictedServiceLevel": true,
            "restrictedGoodsClassification": true,
            "restrictedDimension": true,
            "uomInfo": {
              "weightUOM": null,
              "volumeUOM": null,
              "dimensionUOM": null,
              "distanceUOM": null
            }
          }
        ],
        "surcharges": [
          {
            "enabled": true,
            "enabledStateRemarks": "sample string 2",
            "surchargeId": 3,
            "surchargeCode": "sample string 4",
            "surchargeCategoryCode": "sample string 5",
            "surchargeName": "sample string 6",
            "surchargeDescription": "sample string 7",
            "fuelSurchargeBasis": true,
            "contractTypeCode": "sample string 9",
            "incotermDutyCode": "sample string 10",
            "fileName": "sample string 11",
            "sheetName": "sample string 12",
            "surchargeTypeCode": "sample string 13",
            "surchargeTypeName": "sample string 14",
            "currencyCodeBeforeExchange": "sample string 15",
            "surchargeAmountBeforeExchange": 16.0,
            "currencyCode": "sample string 17",
            "surchargeAmount": 18.0,
            "surchargeCurrencyExchangeIsOK": true,
            "surchargeCalculation": {
              "fixedSurcharge": 1.0,
              "percentageSurcharge": 1.0,
              "surchargeableUnit": 1.0,
              "surchargeablePackageCount": 1,
              "surchargePerUnit": 1.0,
              "minSurcharge": 1.0,
              "maxSurcharge": 1.0,
              "surchargeableWeightCode": "sample string 1",
              "maxWeightWithoutSurcharge": 1.0
            },
            "surchargeCondition": {
              "appliesToIncoterm": true,
              "subconditionAtPackageLevel": "sample string 2",
              "subconditionAtShipmentLevel": "sample string 3",
              "subconditionOperator": "sample string 4",
              "hasBeenMet": true
            },
            "uomInfo": {
              "weightUOM": null,
              "volumeUOM": null,
              "dimensionUOM": null,
              "distanceUOM": null
            }
          },
          {
            "enabled": true,
            "enabledStateRemarks": "sample string 2",
            "surchargeId": 3,
            "surchargeCode": "sample string 4",
            "surchargeCategoryCode": "sample string 5",
            "surchargeName": "sample string 6",
            "surchargeDescription": "sample string 7",
            "fuelSurchargeBasis": true,
            "contractTypeCode": "sample string 9",
            "incotermDutyCode": "sample string 10",
            "fileName": "sample string 11",
            "sheetName": "sample string 12",
            "surchargeTypeCode": "sample string 13",
            "surchargeTypeName": "sample string 14",
            "currencyCodeBeforeExchange": "sample string 15",
            "surchargeAmountBeforeExchange": 16.0,
            "currencyCode": "sample string 17",
            "surchargeAmount": 18.0,
            "surchargeCurrencyExchangeIsOK": true,
            "surchargeCalculation": {
              "fixedSurcharge": 1.0,
              "percentageSurcharge": 1.0,
              "surchargeableUnit": 1.0,
              "surchargeablePackageCount": 1,
              "surchargePerUnit": 1.0,
              "minSurcharge": 1.0,
              "maxSurcharge": 1.0,
              "surchargeableWeightCode": "sample string 1",
              "maxWeightWithoutSurcharge": 1.0
            },
            "surchargeCondition": {
              "appliesToIncoterm": true,
              "subconditionAtPackageLevel": "sample string 2",
              "subconditionAtShipmentLevel": "sample string 3",
              "subconditionOperator": "sample string 4",
              "hasBeenMet": true
            },
            "uomInfo": {
              "weightUOM": null,
              "volumeUOM": null,
              "dimensionUOM": null,
              "distanceUOM": null
            }
          }
        ],
        "duplicateService": true,
        "duplicateServicePriority": 12
      },
      "errorInfo": {
        "errorMessages": [
          "sample string 1",
          "sample string 2"
        ],
        "errorFlags": {
          "sample string 1": true,
          "sample string 3": true
        }
      }
    },
    {
      "enabled": true,
      "enabledStateRemarks": "sample string 2",
      "rateId": 3,
      "rateCode": "sample string 4",
      "contractTypeCode": "sample string 5",
      "forwarderCode": "sample string 6",
      "serviceCode": "sample string 7",
      "incotermCode": "sample string 8",
      "residential": true,
      "commercial": true,
      "sortingPointCode": "sample string 11",
      "transitTime": 1,
      "estimatedPickupDate": "2025-04-19",
      "estimatedDeliveryDate": "2025-04-19",
      "deliveryTimeStart": "00:00:00.1234567",
      "deliveryTimeEnd": "00:00:00.1234567",
      "currencyCodeBeforeExchange": "sample string 14",
      "freightRateBeforeExchange": 1.0,
      "currencyCode": "sample string 15",
      "freightRate": 1.0,
      "totalSurcharge": 1.0,
      "totalCost": 1.0,
      "chargeableFactorCode": "sample string 16",
      "matchQuality": {
        "value": 1.0,
        "pickupDateIsOK": true,
        "pickupTimeIsOK": true,
        "deliveryDateIsOK": true,
        "deliveryTimeIsOK": true,
        "dgClassesAreOK": true,
        "unNumbersAreOK": true,
        "chargeableFactorValueIsInRange": true,
        "thereAreNoRestrictions": true,
        "freightRateCurrencyExchangeIsOK": true,
        "surchargeCurrencyExchangeIsOK": true,
        "divisionMatchLevel": "sample string 12"
      },
      "lanes": [
        {
          "laneId": 1,
          "laneCode": "sample string 2",
          "enabled": true,
          "enabledStateRemarks": "sample string 4",
          "pickupZone": {
            "zoneCode": "sample string 1",
            "countryCode": "sample string 2",
            "postalCodeStart": "sample string 3",
            "postalCodeEnd": "sample string 4"
          },
          "deliveryZone": {
            "zoneCode": "sample string 1",
            "countryCode": "sample string 2",
            "postalCodeStart": "sample string 3",
            "postalCodeEnd": "sample string 4"
          },
          "legs": [
            {
              "legNumber": 1,
              "legId": 2,
              "legCode": "sample string 3",
              "originTypeCode": "sample string 4",
              "destinationTypeCode": "sample string 5",
              "originZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "destinationZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "originShippingPointId": 6,
              "originShippingPointCode": "sample string 7",
              "destinationShippingPointId": 8,
              "destinationShippingPointCode": "sample string 9",
              "transitTime": 10,
              "holidayCheck": "sample string 11",
              "estimatedDepartureDate": "2025-04-19",
              "estimatedArrivalDate": "2025-04-19",
              "serviceSchedule": {
                "serviceScheduleId": 1,
                "cutoffTime": "00:00:00.1234567",
                "pickupDays": "sample string 2",
                "transitDays": "sample string 3",
                "deliveryDays": "sample string 4",
                "pickupTimeStart": "00:00:00.1234567",
                "pickupTimeEnd": "00:00:00.1234567",
                "deliveryTimeStart": "00:00:00.1234567",
                "deliveryTimeEnd": "00:00:00.1234567"
              },
              "fileName": "sample string 14",
              "sheetName": "sample string 15"
            },
            {
              "legNumber": 1,
              "legId": 2,
              "legCode": "sample string 3",
              "originTypeCode": "sample string 4",
              "destinationTypeCode": "sample string 5",
              "originZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "destinationZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "originShippingPointId": 6,
              "originShippingPointCode": "sample string 7",
              "destinationShippingPointId": 8,
              "destinationShippingPointCode": "sample string 9",
              "transitTime": 10,
              "holidayCheck": "sample string 11",
              "estimatedDepartureDate": "2025-04-19",
              "estimatedArrivalDate": "2025-04-19",
              "serviceSchedule": {
                "serviceScheduleId": 1,
                "cutoffTime": "00:00:00.1234567",
                "pickupDays": "sample string 2",
                "transitDays": "sample string 3",
                "deliveryDays": "sample string 4",
                "pickupTimeStart": "00:00:00.1234567",
                "pickupTimeEnd": "00:00:00.1234567",
                "deliveryTimeStart": "00:00:00.1234567",
                "deliveryTimeEnd": "00:00:00.1234567"
              },
              "fileName": "sample string 14",
              "sheetName": "sample string 15"
            }
          ],
          "fileName": "sample string 5",
          "sheetName": "sample string 6"
        },
        {
          "laneId": 1,
          "laneCode": "sample string 2",
          "enabled": true,
          "enabledStateRemarks": "sample string 4",
          "pickupZone": {
            "zoneCode": "sample string 1",
            "countryCode": "sample string 2",
            "postalCodeStart": "sample string 3",
            "postalCodeEnd": "sample string 4"
          },
          "deliveryZone": {
            "zoneCode": "sample string 1",
            "countryCode": "sample string 2",
            "postalCodeStart": "sample string 3",
            "postalCodeEnd": "sample string 4"
          },
          "legs": [
            {
              "legNumber": 1,
              "legId": 2,
              "legCode": "sample string 3",
              "originTypeCode": "sample string 4",
              "destinationTypeCode": "sample string 5",
              "originZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "destinationZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "originShippingPointId": 6,
              "originShippingPointCode": "sample string 7",
              "destinationShippingPointId": 8,
              "destinationShippingPointCode": "sample string 9",
              "transitTime": 10,
              "holidayCheck": "sample string 11",
              "estimatedDepartureDate": "2025-04-19",
              "estimatedArrivalDate": "2025-04-19",
              "serviceSchedule": {
                "serviceScheduleId": 1,
                "cutoffTime": "00:00:00.1234567",
                "pickupDays": "sample string 2",
                "transitDays": "sample string 3",
                "deliveryDays": "sample string 4",
                "pickupTimeStart": "00:00:00.1234567",
                "pickupTimeEnd": "00:00:00.1234567",
                "deliveryTimeStart": "00:00:00.1234567",
                "deliveryTimeEnd": "00:00:00.1234567"
              },
              "fileName": "sample string 14",
              "sheetName": "sample string 15"
            },
            {
              "legNumber": 1,
              "legId": 2,
              "legCode": "sample string 3",
              "originTypeCode": "sample string 4",
              "destinationTypeCode": "sample string 5",
              "originZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "destinationZone": {
                "zoneCode": "sample string 1",
                "countryCode": "sample string 2",
                "postalCodeStart": "sample string 3",
                "postalCodeEnd": "sample string 4"
              },
              "originShippingPointId": 6,
              "originShippingPointCode": "sample string 7",
              "destinationShippingPointId": 8,
              "destinationShippingPointCode": "sample string 9",
              "transitTime": 10,
              "holidayCheck": "sample string 11",
              "estimatedDepartureDate": "2025-04-19",
              "estimatedArrivalDate": "2025-04-19",
              "serviceSchedule": {
                "serviceScheduleId": 1,
                "cutoffTime": "00:00:00.1234567",
                "pickupDays": "sample string 2",
                "transitDays": "sample string 3",
                "deliveryDays": "sample string 4",
                "pickupTimeStart": "00:00:00.1234567",
                "pickupTimeEnd": "00:00:00.1234567",
                "deliveryTimeStart": "00:00:00.1234567",
                "deliveryTimeEnd": "00:00:00.1234567"
              },
              "fileName": "sample string 14",
              "sheetName": "sample string 15"
            }
          ],
          "fileName": "sample string 5",
          "sheetName": "sample string 6"
        }
      ],
      "moreInfo": {
        "contractDateStart": "2025-04-19",
        "contractDateEnd": "2025-04-19",
        "bookingCutOffTime": "00:00:00.1234567",
        "bookingCutOffTimeSource": "sample string 3",
        "pickupDays": "sample string 4",
        "transitDays": "sample string 5",
        "deliveryDays": "sample string 6",
        "saturdayDelivery": true,
        "holidayCheck": "sample string 8",
        "pickupZone": {
          "zoneCode": "sample string 1",
          "countryCode": "sample string 2",
          "postalCodeStart": "sample string 3",
          "postalCodeEnd": "sample string 4"
        },
        "deliveryZone": {
          "zoneCode": "sample string 1",
          "countryCode": "sample string 2",
          "postalCodeStart": "sample string 3",
          "postalCodeEnd": "sample string 4"
        },
        "acceptableDgClasses": [
          "sample string 1",
          "sample string 2"
        ],
        "acceptableUnNumbers": [
          "sample string 1",
          "sample string 2"
        ],
        "fileName": "sample string 9",
        "sheetName": "sample string 10",
        "uomInfo": null,
        "rateCalculation": {
          "chargeableFactorCode": "sample string 1",
          "chargeableFactorStart": 2.0,
          "chargeableFactorEnd": 3.0,
          "chargeableFactorValue": 4.0,
          "chargeableUnit": 1.0,
          "chargeableUnitCount": 1.0,
          "baseCharge": 5.0,
          "chargePerUnit": 1.0,
          "isChargePerExtraUnit": true,
          "minCharge": 1.0,
          "minChargePerPackage": 1.0,
          "packageRateCalculations": [
            {
              "chargeableFactorCode": "sample string 1",
              "chargeableFactorStart": 2.0,
              "chargeableFactorEnd": 3.0,
              "chargeableFactorValue": 4.0,
              "chargeableUnit": 1.0,
              "chargeableUnitCount": 1.0,
              "baseCharge": 5.0,
              "chargePerUnit": 1.0,
              "isChargePerExtraUnit": true,
              "minCharge": 1.0
            },
            {
              "chargeableFactorCode": "sample string 1",
              "chargeableFactorStart": 2.0,
              "chargeableFactorEnd": 3.0,
              "chargeableFactorValue": 4.0,
              "chargeableUnit": 1.0,
              "chargeableUnitCount": 1.0,
              "baseCharge": 5.0,
              "chargePerUnit": 1.0,
              "isChargePerExtraUnit": true,
              "minCharge": 1.0
            }
          ]
        },
        "rounding": {
          "roundingCode": "sample string 1",
          "decimalPlacesForDimension": 1,
          "decimalPlacesForLoadingLength": 1,
          "decimalPlacesForVolume": 1,
          "decimalPlacesForWeight": 1
        },
        "weightCalculation": {
          "chargeableWeightCode": "sample string 1",
          "chargeableWeight": 2.0,
          "chargeableWeightUOM": "sample string 3",
          "actualWeight": 4.0,
          "actualWeightUOM": "sample string 5",
          "loadingLengthWeightMultiplier": 1.0,
          "loadingLengthWeightMultiplierUOM": "sample string 6",
          "loadingLengthWeight": 7.0,
          "loadingLengthWeightUOM": "sample string 8",
          "volumeWeightMultiplier": 1.0,
          "volumeWeightMultiplierUOM": "sample string 9",
          "volumeWeightThreshold": 1.0,
          "volumeWeightThresholdUOM": "sample string 10",
          "volumeWeight": 11.0,
          "volumeWeightUOM": "sample string 12",
          "oversizePackageLengthThreshold": 1.0,
          "oversizePackageLengthThresholdUOM": "sample string 13",
          "oversizePackageLengthGirthThreshold": 1.0,
          "oversizePackageLengthGirthThresholdUOM": "sample string 14",
          "oversizePackageMinChargeableWeight": 1.0,
          "oversizePackageMinChargeableWeightUOM": "sample string 15",
          "packageWeightCalculations": [
            {
              "chargeableWeightCode": "sample string 1",
              "chargeableWeight": 2.0,
              "chargeableWeightUOM": "sample string 3",
              "actualWeight": 4.0,
              "actualWeightUOM": "sample string 5",
              "length": 6.0,
              "width": 7.0,
              "height": 8.0,
              "dimensionUOM": "sample string 9",
              "volume": 10.0,
              "volumeUOM": "sample string 11",
              "volumeWeight": 12.0,
              "volumeWeightUOM": "sample string 13"
            },
            {
              "chargeableWeightCode": "sample string 1",
              "chargeableWeight": 2.0,
              "chargeableWeightUOM": "sample string 3",
              "actualWeight": 4.0,
              "actualWeightUOM": "sample string 5",
              "length": 6.0,
              "width": 7.0,
              "height": 8.0,
              "dimensionUOM": "sample string 9",
              "volume": 10.0,
              "volumeUOM": "sample string 11",
              "volumeWeight": 12.0,
              "volumeWeightUOM": "sample string 13"
            }
          ]
        },
        "restrictions": [
          {
            "enabled": true,
            "restrictionId": 2,
            "restrictionCode": "sample string 3",
            "appliesToAllPackageTypes": true,
            "appliesToAllServiceLevels": true,
            "appliesToAllGoodsClassifications": true,
            "fileName": "sample string 7",
            "sheetName": "sample string 8",
            "restrictionCondition": {
              "conditionFormula": "sample string 1",
              "subconditionAtPackageLevel": "sample string 2",
              "subconditionAtShipmentLevel": "sample string 3",
              "subconditionOperator": "sample string 4",
              "hasBeenMet": true
            },
            "restrictedServiceLevel": true,
            "restrictedGoodsClassification": true,
            "restrictedDimension": true,
            "uomInfo": {
              "weightUOM": null,
              "volumeUOM": null,
              "dimensionUOM": null,
              "distanceUOM": null
            }
          },
          {
            "enabled": true,
            "restrictionId": 2,
            "restrictionCode": "sample string 3",
            "appliesToAllPackageTypes": true,
            "appliesToAllServiceLevels": true,
            "appliesToAllGoodsClassifications": true,
            "fileName": "sample string 7",
            "sheetName": "sample string 8",
            "restrictionCondition": {
              "conditionFormula": "sample string 1",
              "subconditionAtPackageLevel": "sample string 2",
              "subconditionAtShipmentLevel": "sample string 3",
              "subconditionOperator": "sample string 4",
              "hasBeenMet": true
            },
            "restrictedServiceLevel": true,
            "restrictedGoodsClassification": true,
            "restrictedDimension": true,
            "uomInfo": {
              "weightUOM": null,
              "volumeUOM": null,
              "dimensionUOM": null,
              "distanceUOM": null
            }
          }
        ],
        "surcharges": [
          {
            "enabled": true,
            "enabledStateRemarks": "sample string 2",
            "surchargeId": 3,
            "surchargeCode": "sample string 4",
            "surchargeCategoryCode": "sample string 5",
            "surchargeName": "sample string 6",
            "surchargeDescription": "sample string 7",
            "fuelSurchargeBasis": true,
            "contractTypeCode": "sample string 9",
            "incotermDutyCode": "sample string 10",
            "fileName": "sample string 11",
            "sheetName": "sample string 12",
            "surchargeTypeCode": "sample string 13",
            "surchargeTypeName": "sample string 14",
            "currencyCodeBeforeExchange": "sample string 15",
            "surchargeAmountBeforeExchange": 16.0,
            "currencyCode": "sample string 17",
            "surchargeAmount": 18.0,
            "surchargeCurrencyExchangeIsOK": true,
            "surchargeCalculation": {
              "fixedSurcharge": 1.0,
              "percentageSurcharge": 1.0,
              "surchargeableUnit": 1.0,
              "surchargeablePackageCount": 1,
              "surchargePerUnit": 1.0,
              "minSurcharge": 1.0,
              "maxSurcharge": 1.0,
              "surchargeableWeightCode": "sample string 1",
              "maxWeightWithoutSurcharge": 1.0
            },
            "surchargeCondition": {
              "appliesToIncoterm": true,
              "subconditionAtPackageLevel": "sample string 2",
              "subconditionAtShipmentLevel": "sample string 3",
              "subconditionOperator": "sample string 4",
              "hasBeenMet": true
            },
            "uomInfo": {
              "weightUOM": null,
              "volumeUOM": null,
              "dimensionUOM": null,
              "distanceUOM": null
            }
          },
          {
            "enabled": true,
            "enabledStateRemarks": "sample string 2",
            "surchargeId": 3,
            "surchargeCode": "sample string 4",
            "surchargeCategoryCode": "sample string 5",
            "surchargeName": "sample string 6",
            "surchargeDescription": "sample string 7",
            "fuelSurchargeBasis": true,
            "contractTypeCode": "sample string 9",
            "incotermDutyCode": "sample string 10",
            "fileName": "sample string 11",
            "sheetName": "sample string 12",
            "surchargeTypeCode": "sample string 13",
            "surchargeTypeName": "sample string 14",
            "currencyCodeBeforeExchange": "sample string 15",
            "surchargeAmountBeforeExchange": 16.0,
            "currencyCode": "sample string 17",
            "surchargeAmount": 18.0,
            "surchargeCurrencyExchangeIsOK": true,
            "surchargeCalculation": {
              "fixedSurcharge": 1.0,
              "percentageSurcharge": 1.0,
              "surchargeableUnit": 1.0,
              "surchargeablePackageCount": 1,
              "surchargePerUnit": 1.0,
              "minSurcharge": 1.0,
              "maxSurcharge": 1.0,
              "surchargeableWeightCode": "sample string 1",
              "maxWeightWithoutSurcharge": 1.0
            },
            "surchargeCondition": {
              "appliesToIncoterm": true,
              "subconditionAtPackageLevel": "sample string 2",
              "subconditionAtShipmentLevel": "sample string 3",
              "subconditionOperator": "sample string 4",
              "hasBeenMet": true
            },
            "uomInfo": {
              "weightUOM": null,
              "volumeUOM": null,
              "dimensionUOM": null,
              "distanceUOM": null
            }
          }
        ],
        "duplicateService": true,
        "duplicateServicePriority": 12
      },
      "errorInfo": {
        "errorMessages": [
          "sample string 1",
          "sample string 2"
        ],
        "errorFlags": {
          "sample string 1": true,
          "sample string 3": true
        }
      }
    }
  ],
  "shipmentCostBreakdown": {
    "listOfCostPerPackage": [
      {
        "packageId": 1,
        "rateCode": "sample string 2",
        "partOfFreightRate": 3.0,
        "partOfTotalSurcharge": 4.0,
        "partOfTotalCost": 5.0,
        "percentageOfFreightRate": 6.0,
        "percentageOfTotalSurcharge": 7.0,
        "percentageOfTotalCost": 8.0
      },
      {
        "packageId": 1,
        "rateCode": "sample string 2",
        "partOfFreightRate": 3.0,
        "partOfTotalSurcharge": 4.0,
        "partOfTotalCost": 5.0,
        "percentageOfFreightRate": 6.0,
        "percentageOfTotalSurcharge": 7.0,
        "percentageOfTotalCost": 8.0
      }
    ],
    "listOfSurchargePerPackage": [
      {
        "packageId": 1,
        "rateCode": "sample string 2",
        "surchargeCode": "sample string 3",
        "partOfSurcharge": 4.0,
        "percentageOfSurcharge": 5.0
      },
      {
        "packageId": 1,
        "rateCode": "sample string 2",
        "surchargeCode": "sample string 3",
        "partOfSurcharge": 4.0,
        "percentageOfSurcharge": 5.0
      }
    ]
  },
  "routeCostBreakdown": {
    "listOfCostPerStop": [
      {
        "stopId": 1,
        "rateCode": "sample string 2",
        "partOfFreightRate": 3.0,
        "partOfTotalSurcharge": 4.0,
        "partOfTotalCost": 5.0,
        "percentageOfFreightRate": 6.0,
        "percentageOfTotalSurcharge": 7.0,
        "percentageOfTotalCost": 8.0
      },
      {
        "stopId": 1,
        "rateCode": "sample string 2",
        "partOfFreightRate": 3.0,
        "partOfTotalSurcharge": 4.0,
        "partOfTotalCost": 5.0,
        "percentageOfFreightRate": 6.0,
        "percentageOfTotalSurcharge": 7.0,
        "percentageOfTotalCost": 8.0
      }
    ],
    "listOfCostPerShipment": [
      {
        "shipmentId": 1,
        "rateCode": "sample string 2",
        "partOfFreightRate": 3.0,
        "partOfTotalSurcharge": 4.0,
        "partOfTotalCost": 5.0,
        "percentageOfFreightRate": 6.0,
        "percentageOfTotalSurcharge": 7.0,
        "percentageOfTotalCost": 8.0
      },
      {
        "shipmentId": 1,
        "rateCode": "sample string 2",
        "partOfFreightRate": 3.0,
        "partOfTotalSurcharge": 4.0,
        "partOfTotalCost": 5.0,
        "percentageOfFreightRate": 6.0,
        "percentageOfTotalSurcharge": 7.0,
        "percentageOfTotalCost": 8.0
      }
    ]
  },
  "engineDataVersion": "1.20.7.2",
  "engineVersion": "sample string 1",
  "performanceInfo": {
    "startDateTime": "2025-04-19T14:42:39.5958729+00:00",
    "endDateTime": "2025-04-19T14:42:39.5958729+00:00",
    "totalElapsedTime": "00:00:00.1234567"
  },
  "eventLog": {
    "enabled": true,
    "entries": [
      {
        "entryType": 0,
        "entryDateTime": "2025-04-19T14:42:39.5958729+00:00",
        "entryText": "sample string 2",
        "timeSinceLastEntry": "00:00:00.1234567",
        "timeSinceFirstEntry": "00:00:00.1234567"
      },
      {
        "entryType": 0,
        "entryDateTime": "2025-04-19T14:42:39.5958729+00:00",
        "entryText": "sample string 2",
        "timeSinceLastEntry": "00:00:00.1234567",
        "timeSinceFirstEntry": "00:00:00.1234567"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<ResultData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TranspariX.Engine.DataClasses">
  <EngineVersion>sample string 1</EngineVersion>
  <EventLog xmlns:d2p1="http://schemas.datacontract.org/2004/07/CDE.BuildingBlocks">
    <d2p1:Enabled>true</d2p1:Enabled>
  </EventLog>
  <ForwarderServices>
    <ForwarderService>
      <ChargeableFactorCode>sample string 16</ChargeableFactorCode>
      <Commercial>true</Commercial>
      <ContractTypeCode>sample string 5</ContractTypeCode>
      <CurrencyCode>sample string 15</CurrencyCode>
      <CurrencyCodeBeforeExchange>sample string 14</CurrencyCodeBeforeExchange>
      <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
      <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
      <Enabled>true</Enabled>
      <EnabledStateRemarks>sample string 2</EnabledStateRemarks>
      <ErrorInfo>
        <ErrorFlags xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringboolean>
            <d5p1:Key>sample string 1</d5p1:Key>
            <d5p1:Value>true</d5p1:Value>
          </d5p1:KeyValueOfstringboolean>
          <d5p1:KeyValueOfstringboolean>
            <d5p1:Key>sample string 3</d5p1:Key>
            <d5p1:Value>true</d5p1:Value>
          </d5p1:KeyValueOfstringboolean>
        </ErrorFlags>
        <ErrorMessages xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </ErrorMessages>
      </ErrorInfo>
      <EstimatedDeliveryDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDeliveryDate>
      <EstimatedPickupDate>2025-04-19T14:42:39.5802501+00:00</EstimatedPickupDate>
      <ForwarderCode>sample string 6</ForwarderCode>
      <FreightRate>1</FreightRate>
      <FreightRateBeforeExchange>1</FreightRateBeforeExchange>
      <IncotermCode>sample string 8</IncotermCode>
      <Lanes>
        <Lane>
          <DeliveryZone>
            <CountryCode>sample string 2</CountryCode>
            <PostalCodeEnd>sample string 4</PostalCodeEnd>
            <PostalCodeStart>sample string 3</PostalCodeStart>
            <ZoneCode>sample string 1</ZoneCode>
          </DeliveryZone>
          <Enabled>true</Enabled>
          <EnabledStateRemarks>sample string 4</EnabledStateRemarks>
          <FileName>sample string 5</FileName>
          <LaneCode>sample string 2</LaneCode>
          <LaneId>1</LaneId>
          <Legs>
            <Leg>
              <DestinationShippingPointCode>sample string 9</DestinationShippingPointCode>
              <DestinationShippingPointId>8</DestinationShippingPointId>
              <DestinationTypeCode>sample string 5</DestinationTypeCode>
              <DestinationZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </DestinationZone>
              <EstimatedArrivalDate>2025-04-19T14:42:39.5802501+00:00</EstimatedArrivalDate>
              <EstimatedDepartureDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDepartureDate>
              <FileName>sample string 14</FileName>
              <HolidayCheck>sample string 11</HolidayCheck>
              <LegCode>sample string 3</LegCode>
              <LegId>2</LegId>
              <LegNumber>1</LegNumber>
              <OriginShippingPointCode>sample string 7</OriginShippingPointCode>
              <OriginShippingPointId>6</OriginShippingPointId>
              <OriginTypeCode>sample string 4</OriginTypeCode>
              <OriginZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </OriginZone>
              <ServiceSchedule>
                <CutoffTime>PT0.1234567S</CutoffTime>
                <DeliveryDays>sample string 4</DeliveryDays>
                <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
                <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
                <PickupDays>sample string 2</PickupDays>
                <PickupTimeEnd>PT0.1234567S</PickupTimeEnd>
                <PickupTimeStart>PT0.1234567S</PickupTimeStart>
                <ServiceScheduleId>1</ServiceScheduleId>
                <TransitDays>sample string 3</TransitDays>
              </ServiceSchedule>
              <SheetName>sample string 15</SheetName>
              <TransitTime>10</TransitTime>
            </Leg>
            <Leg>
              <DestinationShippingPointCode>sample string 9</DestinationShippingPointCode>
              <DestinationShippingPointId>8</DestinationShippingPointId>
              <DestinationTypeCode>sample string 5</DestinationTypeCode>
              <DestinationZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </DestinationZone>
              <EstimatedArrivalDate>2025-04-19T14:42:39.5802501+00:00</EstimatedArrivalDate>
              <EstimatedDepartureDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDepartureDate>
              <FileName>sample string 14</FileName>
              <HolidayCheck>sample string 11</HolidayCheck>
              <LegCode>sample string 3</LegCode>
              <LegId>2</LegId>
              <LegNumber>1</LegNumber>
              <OriginShippingPointCode>sample string 7</OriginShippingPointCode>
              <OriginShippingPointId>6</OriginShippingPointId>
              <OriginTypeCode>sample string 4</OriginTypeCode>
              <OriginZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </OriginZone>
              <ServiceSchedule>
                <CutoffTime>PT0.1234567S</CutoffTime>
                <DeliveryDays>sample string 4</DeliveryDays>
                <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
                <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
                <PickupDays>sample string 2</PickupDays>
                <PickupTimeEnd>PT0.1234567S</PickupTimeEnd>
                <PickupTimeStart>PT0.1234567S</PickupTimeStart>
                <ServiceScheduleId>1</ServiceScheduleId>
                <TransitDays>sample string 3</TransitDays>
              </ServiceSchedule>
              <SheetName>sample string 15</SheetName>
              <TransitTime>10</TransitTime>
            </Leg>
          </Legs>
          <PickupZone>
            <CountryCode>sample string 2</CountryCode>
            <PostalCodeEnd>sample string 4</PostalCodeEnd>
            <PostalCodeStart>sample string 3</PostalCodeStart>
            <ZoneCode>sample string 1</ZoneCode>
          </PickupZone>
          <SheetName>sample string 6</SheetName>
        </Lane>
        <Lane>
          <DeliveryZone>
            <CountryCode>sample string 2</CountryCode>
            <PostalCodeEnd>sample string 4</PostalCodeEnd>
            <PostalCodeStart>sample string 3</PostalCodeStart>
            <ZoneCode>sample string 1</ZoneCode>
          </DeliveryZone>
          <Enabled>true</Enabled>
          <EnabledStateRemarks>sample string 4</EnabledStateRemarks>
          <FileName>sample string 5</FileName>
          <LaneCode>sample string 2</LaneCode>
          <LaneId>1</LaneId>
          <Legs>
            <Leg>
              <DestinationShippingPointCode>sample string 9</DestinationShippingPointCode>
              <DestinationShippingPointId>8</DestinationShippingPointId>
              <DestinationTypeCode>sample string 5</DestinationTypeCode>
              <DestinationZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </DestinationZone>
              <EstimatedArrivalDate>2025-04-19T14:42:39.5802501+00:00</EstimatedArrivalDate>
              <EstimatedDepartureDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDepartureDate>
              <FileName>sample string 14</FileName>
              <HolidayCheck>sample string 11</HolidayCheck>
              <LegCode>sample string 3</LegCode>
              <LegId>2</LegId>
              <LegNumber>1</LegNumber>
              <OriginShippingPointCode>sample string 7</OriginShippingPointCode>
              <OriginShippingPointId>6</OriginShippingPointId>
              <OriginTypeCode>sample string 4</OriginTypeCode>
              <OriginZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </OriginZone>
              <ServiceSchedule>
                <CutoffTime>PT0.1234567S</CutoffTime>
                <DeliveryDays>sample string 4</DeliveryDays>
                <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
                <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
                <PickupDays>sample string 2</PickupDays>
                <PickupTimeEnd>PT0.1234567S</PickupTimeEnd>
                <PickupTimeStart>PT0.1234567S</PickupTimeStart>
                <ServiceScheduleId>1</ServiceScheduleId>
                <TransitDays>sample string 3</TransitDays>
              </ServiceSchedule>
              <SheetName>sample string 15</SheetName>
              <TransitTime>10</TransitTime>
            </Leg>
            <Leg>
              <DestinationShippingPointCode>sample string 9</DestinationShippingPointCode>
              <DestinationShippingPointId>8</DestinationShippingPointId>
              <DestinationTypeCode>sample string 5</DestinationTypeCode>
              <DestinationZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </DestinationZone>
              <EstimatedArrivalDate>2025-04-19T14:42:39.5802501+00:00</EstimatedArrivalDate>
              <EstimatedDepartureDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDepartureDate>
              <FileName>sample string 14</FileName>
              <HolidayCheck>sample string 11</HolidayCheck>
              <LegCode>sample string 3</LegCode>
              <LegId>2</LegId>
              <LegNumber>1</LegNumber>
              <OriginShippingPointCode>sample string 7</OriginShippingPointCode>
              <OriginShippingPointId>6</OriginShippingPointId>
              <OriginTypeCode>sample string 4</OriginTypeCode>
              <OriginZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </OriginZone>
              <ServiceSchedule>
                <CutoffTime>PT0.1234567S</CutoffTime>
                <DeliveryDays>sample string 4</DeliveryDays>
                <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
                <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
                <PickupDays>sample string 2</PickupDays>
                <PickupTimeEnd>PT0.1234567S</PickupTimeEnd>
                <PickupTimeStart>PT0.1234567S</PickupTimeStart>
                <ServiceScheduleId>1</ServiceScheduleId>
                <TransitDays>sample string 3</TransitDays>
              </ServiceSchedule>
              <SheetName>sample string 15</SheetName>
              <TransitTime>10</TransitTime>
            </Leg>
          </Legs>
          <PickupZone>
            <CountryCode>sample string 2</CountryCode>
            <PostalCodeEnd>sample string 4</PostalCodeEnd>
            <PostalCodeStart>sample string 3</PostalCodeStart>
            <ZoneCode>sample string 1</ZoneCode>
          </PickupZone>
          <SheetName>sample string 6</SheetName>
        </Lane>
      </Lanes>
      <MatchQuality>
        <ChargeableFactorValueIsInRange>true</ChargeableFactorValueIsInRange>
        <DeliveryDateIsOK>true</DeliveryDateIsOK>
        <DeliveryTimeIsOK>true</DeliveryTimeIsOK>
        <DgClassesAreOK>true</DgClassesAreOK>
        <DivisionMatchLevel>sample string 12</DivisionMatchLevel>
        <FreightRateCurrencyExchangeIsOK>true</FreightRateCurrencyExchangeIsOK>
        <PickupDateIsOK>true</PickupDateIsOK>
        <PickupTimeIsOK>true</PickupTimeIsOK>
        <SurchargeCurrencyExchangeIsOK>true</SurchargeCurrencyExchangeIsOK>
        <ThereAreNoRestrictions>true</ThereAreNoRestrictions>
        <UnNumbersAreOK>true</UnNumbersAreOK>
        <Value>1</Value>
      </MatchQuality>
      <MoreInfo>
        <AcceptableDgClasses xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </AcceptableDgClasses>
        <AcceptableUnNumbers xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </AcceptableUnNumbers>
        <BookingCutOffTime>PT0.1234567S</BookingCutOffTime>
        <BookingCutOffTimeSource>sample string 3</BookingCutOffTimeSource>
        <ContractDateEnd>2025-04-19T14:42:39.5802501+00:00</ContractDateEnd>
        <ContractDateStart>2025-04-19T14:42:39.5802501+00:00</ContractDateStart>
        <DeliveryDays>sample string 6</DeliveryDays>
        <DeliveryZone>
          <CountryCode>sample string 2</CountryCode>
          <PostalCodeEnd>sample string 4</PostalCodeEnd>
          <PostalCodeStart>sample string 3</PostalCodeStart>
          <ZoneCode>sample string 1</ZoneCode>
        </DeliveryZone>
        <DuplicateService>true</DuplicateService>
        <DuplicateServicePriority>12</DuplicateServicePriority>
        <FileName>sample string 9</FileName>
        <HolidayCheck>sample string 8</HolidayCheck>
        <PickupDays>sample string 4</PickupDays>
        <PickupZone>
          <CountryCode>sample string 2</CountryCode>
          <PostalCodeEnd>sample string 4</PostalCodeEnd>
          <PostalCodeStart>sample string 3</PostalCodeStart>
          <ZoneCode>sample string 1</ZoneCode>
        </PickupZone>
        <RateCalculation>
          <BaseCharge>5</BaseCharge>
          <ChargePerUnit>1</ChargePerUnit>
          <ChargeableFactorCode>sample string 1</ChargeableFactorCode>
          <ChargeableFactorEnd>3</ChargeableFactorEnd>
          <ChargeableFactorStart>2</ChargeableFactorStart>
          <ChargeableFactorValue>4</ChargeableFactorValue>
          <ChargeableUnit>1</ChargeableUnit>
          <ChargeableUnitCount>1</ChargeableUnitCount>
          <IsChargePerExtraUnit>true</IsChargePerExtraUnit>
          <MinCharge>1</MinCharge>
          <MinChargePerPackage>1</MinChargePerPackage>
          <PackageRateCalculations xmlns:d6p1="http://schemas.datacontract.org/2004/07/TranspariX.Engine.DataClasses.Calculations">
            <d6p1:PackageRateCalculation>
              <d6p1:BaseCharge>5</d6p1:BaseCharge>
              <d6p1:ChargePerUnit>1</d6p1:ChargePerUnit>
              <d6p1:ChargeableFactorCode>sample string 1</d6p1:ChargeableFactorCode>
              <d6p1:ChargeableFactorEnd>3</d6p1:ChargeableFactorEnd>
              <d6p1:ChargeableFactorStart>2</d6p1:ChargeableFactorStart>
              <d6p1:ChargeableFactorValue>4</d6p1:ChargeableFactorValue>
              <d6p1:ChargeableUnit>1</d6p1:ChargeableUnit>
              <d6p1:ChargeableUnitCount>1</d6p1:ChargeableUnitCount>
              <d6p1:IsChargePerExtraUnit>true</d6p1:IsChargePerExtraUnit>
              <d6p1:MinCharge>1</d6p1:MinCharge>
            </d6p1:PackageRateCalculation>
            <d6p1:PackageRateCalculation>
              <d6p1:BaseCharge>5</d6p1:BaseCharge>
              <d6p1:ChargePerUnit>1</d6p1:ChargePerUnit>
              <d6p1:ChargeableFactorCode>sample string 1</d6p1:ChargeableFactorCode>
              <d6p1:ChargeableFactorEnd>3</d6p1:ChargeableFactorEnd>
              <d6p1:ChargeableFactorStart>2</d6p1:ChargeableFactorStart>
              <d6p1:ChargeableFactorValue>4</d6p1:ChargeableFactorValue>
              <d6p1:ChargeableUnit>1</d6p1:ChargeableUnit>
              <d6p1:ChargeableUnitCount>1</d6p1:ChargeableUnitCount>
              <d6p1:IsChargePerExtraUnit>true</d6p1:IsChargePerExtraUnit>
              <d6p1:MinCharge>1</d6p1:MinCharge>
            </d6p1:PackageRateCalculation>
          </PackageRateCalculations>
        </RateCalculation>
        <Restrictions>
          <Restriction>
            <AppliesToAllGoodsClassifications>true</AppliesToAllGoodsClassifications>
            <AppliesToAllPackageTypes>true</AppliesToAllPackageTypes>
            <AppliesToAllServiceLevels>true</AppliesToAllServiceLevels>
            <Enabled>true</Enabled>
            <FileName>sample string 7</FileName>
            <RestrictedDimension>true</RestrictedDimension>
            <RestrictedGoodsClassification>true</RestrictedGoodsClassification>
            <RestrictedServiceLevel>true</RestrictedServiceLevel>
            <RestrictionCode>sample string 3</RestrictionCode>
            <RestrictionCondition>
              <ConditionFormula>sample string 1</ConditionFormula>
              <HasBeenMet>true</HasBeenMet>
              <SubconditionAtPackageLevel>sample string 2</SubconditionAtPackageLevel>
              <SubconditionAtShipmentLevel>sample string 3</SubconditionAtShipmentLevel>
              <SubconditionOperator>sample string 4</SubconditionOperator>
            </RestrictionCondition>
            <RestrictionId>2</RestrictionId>
            <SheetName>sample string 8</SheetName>
            <UOMInfo>
              <DimensionUOM i:nil="true" />
              <DistanceUOM i:nil="true" />
              <VolumeUOM i:nil="true" />
              <WeightUOM i:nil="true" />
            </UOMInfo>
          </Restriction>
          <Restriction>
            <AppliesToAllGoodsClassifications>true</AppliesToAllGoodsClassifications>
            <AppliesToAllPackageTypes>true</AppliesToAllPackageTypes>
            <AppliesToAllServiceLevels>true</AppliesToAllServiceLevels>
            <Enabled>true</Enabled>
            <FileName>sample string 7</FileName>
            <RestrictedDimension>true</RestrictedDimension>
            <RestrictedGoodsClassification>true</RestrictedGoodsClassification>
            <RestrictedServiceLevel>true</RestrictedServiceLevel>
            <RestrictionCode>sample string 3</RestrictionCode>
            <RestrictionCondition>
              <ConditionFormula>sample string 1</ConditionFormula>
              <HasBeenMet>true</HasBeenMet>
              <SubconditionAtPackageLevel>sample string 2</SubconditionAtPackageLevel>
              <SubconditionAtShipmentLevel>sample string 3</SubconditionAtShipmentLevel>
              <SubconditionOperator>sample string 4</SubconditionOperator>
            </RestrictionCondition>
            <RestrictionId>2</RestrictionId>
            <SheetName>sample string 8</SheetName>
            <UOMInfo>
              <DimensionUOM i:nil="true" />
              <DistanceUOM i:nil="true" />
              <VolumeUOM i:nil="true" />
              <WeightUOM i:nil="true" />
            </UOMInfo>
          </Restriction>
        </Restrictions>
        <Rounding>
          <DecimalPlacesForDimension>1</DecimalPlacesForDimension>
          <DecimalPlacesForLoadingLength>1</DecimalPlacesForLoadingLength>
          <DecimalPlacesForVolume>1</DecimalPlacesForVolume>
          <DecimalPlacesForWeight>1</DecimalPlacesForWeight>
          <RoundingCode>sample string 1</RoundingCode>
        </Rounding>
        <SaturdayDelivery>true</SaturdayDelivery>
        <SheetName>sample string 10</SheetName>
        <Surcharges>
          <Surcharge>
            <ContractTypeCode>sample string 9</ContractTypeCode>
            <CurrencyCode>sample string 17</CurrencyCode>
            <CurrencyCodeBeforeExchange>sample string 15</CurrencyCodeBeforeExchange>
            <Enabled>true</Enabled>
            <EnabledStateRemarks>sample string 2</EnabledStateRemarks>
            <FileName>sample string 11</FileName>
            <FuelSurchargeBasis>true</FuelSurchargeBasis>
            <IncotermDutyCode>sample string 10</IncotermDutyCode>
            <SheetName>sample string 12</SheetName>
            <SurchargeAmount>18</SurchargeAmount>
            <SurchargeAmountBeforeExchange>16</SurchargeAmountBeforeExchange>
            <SurchargeCalculation>
              <FixedSurcharge>1</FixedSurcharge>
              <MaxSurcharge>1</MaxSurcharge>
              <MaxWeightWithoutSurcharge>1</MaxWeightWithoutSurcharge>
              <MinSurcharge>1</MinSurcharge>
              <PercentageSurcharge>1</PercentageSurcharge>
              <SurchargePerUnit>1</SurchargePerUnit>
              <SurchargeablePackageCount>1</SurchargeablePackageCount>
              <SurchargeableUnit>1</SurchargeableUnit>
              <SurchargeableWeightCode>sample string 1</SurchargeableWeightCode>
            </SurchargeCalculation>
            <SurchargeCategoryCode>sample string 5</SurchargeCategoryCode>
            <SurchargeCode>sample string 4</SurchargeCode>
            <SurchargeCondition>
              <AppliesToIncoterm>true</AppliesToIncoterm>
              <HasBeenMet>true</HasBeenMet>
              <SubconditionAtPackageLevel>sample string 2</SubconditionAtPackageLevel>
              <SubconditionAtShipmentLevel>sample string 3</SubconditionAtShipmentLevel>
              <SubconditionOperator>sample string 4</SubconditionOperator>
            </SurchargeCondition>
            <SurchargeCurrencyExchangeIsOK>true</SurchargeCurrencyExchangeIsOK>
            <SurchargeDescription>sample string 7</SurchargeDescription>
            <SurchargeId>3</SurchargeId>
            <SurchargeName>sample string 6</SurchargeName>
            <SurchargeTypeCode>sample string 13</SurchargeTypeCode>
            <SurchargeTypeName>sample string 14</SurchargeTypeName>
            <UOMInfo>
              <DimensionUOM i:nil="true" />
              <DistanceUOM i:nil="true" />
              <VolumeUOM i:nil="true" />
              <WeightUOM i:nil="true" />
            </UOMInfo>
          </Surcharge>
          <Surcharge>
            <ContractTypeCode>sample string 9</ContractTypeCode>
            <CurrencyCode>sample string 17</CurrencyCode>
            <CurrencyCodeBeforeExchange>sample string 15</CurrencyCodeBeforeExchange>
            <Enabled>true</Enabled>
            <EnabledStateRemarks>sample string 2</EnabledStateRemarks>
            <FileName>sample string 11</FileName>
            <FuelSurchargeBasis>true</FuelSurchargeBasis>
            <IncotermDutyCode>sample string 10</IncotermDutyCode>
            <SheetName>sample string 12</SheetName>
            <SurchargeAmount>18</SurchargeAmount>
            <SurchargeAmountBeforeExchange>16</SurchargeAmountBeforeExchange>
            <SurchargeCalculation>
              <FixedSurcharge>1</FixedSurcharge>
              <MaxSurcharge>1</MaxSurcharge>
              <MaxWeightWithoutSurcharge>1</MaxWeightWithoutSurcharge>
              <MinSurcharge>1</MinSurcharge>
              <PercentageSurcharge>1</PercentageSurcharge>
              <SurchargePerUnit>1</SurchargePerUnit>
              <SurchargeablePackageCount>1</SurchargeablePackageCount>
              <SurchargeableUnit>1</SurchargeableUnit>
              <SurchargeableWeightCode>sample string 1</SurchargeableWeightCode>
            </SurchargeCalculation>
            <SurchargeCategoryCode>sample string 5</SurchargeCategoryCode>
            <SurchargeCode>sample string 4</SurchargeCode>
            <SurchargeCondition>
              <AppliesToIncoterm>true</AppliesToIncoterm>
              <HasBeenMet>true</HasBeenMet>
              <SubconditionAtPackageLevel>sample string 2</SubconditionAtPackageLevel>
              <SubconditionAtShipmentLevel>sample string 3</SubconditionAtShipmentLevel>
              <SubconditionOperator>sample string 4</SubconditionOperator>
            </SurchargeCondition>
            <SurchargeCurrencyExchangeIsOK>true</SurchargeCurrencyExchangeIsOK>
            <SurchargeDescription>sample string 7</SurchargeDescription>
            <SurchargeId>3</SurchargeId>
            <SurchargeName>sample string 6</SurchargeName>
            <SurchargeTypeCode>sample string 13</SurchargeTypeCode>
            <SurchargeTypeName>sample string 14</SurchargeTypeName>
            <UOMInfo>
              <DimensionUOM i:nil="true" />
              <DistanceUOM i:nil="true" />
              <VolumeUOM i:nil="true" />
              <WeightUOM i:nil="true" />
            </UOMInfo>
          </Surcharge>
        </Surcharges>
        <TransitDays>sample string 5</TransitDays>
        <UOMInfo i:nil="true" />
        <WeightCalculation>
          <ActualWeight>4</ActualWeight>
          <ActualWeightUOM>sample string 5</ActualWeightUOM>
          <ChargeableWeight>2</ChargeableWeight>
          <ChargeableWeightCode>sample string 1</ChargeableWeightCode>
          <ChargeableWeightUOM>sample string 3</ChargeableWeightUOM>
          <LoadingLengthWeight>7</LoadingLengthWeight>
          <LoadingLengthWeightMultiplier>1</LoadingLengthWeightMultiplier>
          <LoadingLengthWeightMultiplierUOM>sample string 6</LoadingLengthWeightMultiplierUOM>
          <LoadingLengthWeightUOM>sample string 8</LoadingLengthWeightUOM>
          <OversizePackageLengthGirthThreshold>1</OversizePackageLengthGirthThreshold>
          <OversizePackageLengthGirthThresholdUOM>sample string 14</OversizePackageLengthGirthThresholdUOM>
          <OversizePackageLengthThreshold>1</OversizePackageLengthThreshold>
          <OversizePackageLengthThresholdUOM>sample string 13</OversizePackageLengthThresholdUOM>
          <OversizePackageMinChargeableWeight>1</OversizePackageMinChargeableWeight>
          <OversizePackageMinChargeableWeightUOM>sample string 15</OversizePackageMinChargeableWeightUOM>
          <PackageWeightCalculations xmlns:d6p1="http://schemas.datacontract.org/2004/07/TranspariX.Engine.DataClasses.Calculations">
            <d6p1:PackageWeightCalculation>
              <d6p1:ActualWeight>4</d6p1:ActualWeight>
              <d6p1:ActualWeightUOM>sample string 5</d6p1:ActualWeightUOM>
              <d6p1:ChargeableWeight>2</d6p1:ChargeableWeight>
              <d6p1:ChargeableWeightCode>sample string 1</d6p1:ChargeableWeightCode>
              <d6p1:ChargeableWeightUOM>sample string 3</d6p1:ChargeableWeightUOM>
              <d6p1:DimensionUOM>sample string 9</d6p1:DimensionUOM>
              <d6p1:Height>8</d6p1:Height>
              <d6p1:Length>6</d6p1:Length>
              <d6p1:Volume>10</d6p1:Volume>
              <d6p1:VolumeUOM>sample string 11</d6p1:VolumeUOM>
              <d6p1:VolumeWeight>12</d6p1:VolumeWeight>
              <d6p1:VolumeWeightUOM>sample string 13</d6p1:VolumeWeightUOM>
              <d6p1:Width>7</d6p1:Width>
            </d6p1:PackageWeightCalculation>
            <d6p1:PackageWeightCalculation>
              <d6p1:ActualWeight>4</d6p1:ActualWeight>
              <d6p1:ActualWeightUOM>sample string 5</d6p1:ActualWeightUOM>
              <d6p1:ChargeableWeight>2</d6p1:ChargeableWeight>
              <d6p1:ChargeableWeightCode>sample string 1</d6p1:ChargeableWeightCode>
              <d6p1:ChargeableWeightUOM>sample string 3</d6p1:ChargeableWeightUOM>
              <d6p1:DimensionUOM>sample string 9</d6p1:DimensionUOM>
              <d6p1:Height>8</d6p1:Height>
              <d6p1:Length>6</d6p1:Length>
              <d6p1:Volume>10</d6p1:Volume>
              <d6p1:VolumeUOM>sample string 11</d6p1:VolumeUOM>
              <d6p1:VolumeWeight>12</d6p1:VolumeWeight>
              <d6p1:VolumeWeightUOM>sample string 13</d6p1:VolumeWeightUOM>
              <d6p1:Width>7</d6p1:Width>
            </d6p1:PackageWeightCalculation>
          </PackageWeightCalculations>
          <VolumeWeight>11</VolumeWeight>
          <VolumeWeightMultiplier>1</VolumeWeightMultiplier>
          <VolumeWeightMultiplierUOM>sample string 9</VolumeWeightMultiplierUOM>
          <VolumeWeightThreshold>1</VolumeWeightThreshold>
          <VolumeWeightThresholdUOM>sample string 10</VolumeWeightThresholdUOM>
          <VolumeWeightUOM>sample string 12</VolumeWeightUOM>
        </WeightCalculation>
      </MoreInfo>
      <RateCode>sample string 4</RateCode>
      <RateId>3</RateId>
      <Residential>true</Residential>
      <ServiceCode>sample string 7</ServiceCode>
      <SortingPointCode>sample string 11</SortingPointCode>
      <TotalCost>1</TotalCost>
      <TotalSurcharge>1</TotalSurcharge>
      <TransitTime>1</TransitTime>
    </ForwarderService>
    <ForwarderService>
      <ChargeableFactorCode>sample string 16</ChargeableFactorCode>
      <Commercial>true</Commercial>
      <ContractTypeCode>sample string 5</ContractTypeCode>
      <CurrencyCode>sample string 15</CurrencyCode>
      <CurrencyCodeBeforeExchange>sample string 14</CurrencyCodeBeforeExchange>
      <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
      <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
      <Enabled>true</Enabled>
      <EnabledStateRemarks>sample string 2</EnabledStateRemarks>
      <ErrorInfo>
        <ErrorFlags xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringboolean>
            <d5p1:Key>sample string 1</d5p1:Key>
            <d5p1:Value>true</d5p1:Value>
          </d5p1:KeyValueOfstringboolean>
          <d5p1:KeyValueOfstringboolean>
            <d5p1:Key>sample string 3</d5p1:Key>
            <d5p1:Value>true</d5p1:Value>
          </d5p1:KeyValueOfstringboolean>
        </ErrorFlags>
        <ErrorMessages xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </ErrorMessages>
      </ErrorInfo>
      <EstimatedDeliveryDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDeliveryDate>
      <EstimatedPickupDate>2025-04-19T14:42:39.5802501+00:00</EstimatedPickupDate>
      <ForwarderCode>sample string 6</ForwarderCode>
      <FreightRate>1</FreightRate>
      <FreightRateBeforeExchange>1</FreightRateBeforeExchange>
      <IncotermCode>sample string 8</IncotermCode>
      <Lanes>
        <Lane>
          <DeliveryZone>
            <CountryCode>sample string 2</CountryCode>
            <PostalCodeEnd>sample string 4</PostalCodeEnd>
            <PostalCodeStart>sample string 3</PostalCodeStart>
            <ZoneCode>sample string 1</ZoneCode>
          </DeliveryZone>
          <Enabled>true</Enabled>
          <EnabledStateRemarks>sample string 4</EnabledStateRemarks>
          <FileName>sample string 5</FileName>
          <LaneCode>sample string 2</LaneCode>
          <LaneId>1</LaneId>
          <Legs>
            <Leg>
              <DestinationShippingPointCode>sample string 9</DestinationShippingPointCode>
              <DestinationShippingPointId>8</DestinationShippingPointId>
              <DestinationTypeCode>sample string 5</DestinationTypeCode>
              <DestinationZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </DestinationZone>
              <EstimatedArrivalDate>2025-04-19T14:42:39.5802501+00:00</EstimatedArrivalDate>
              <EstimatedDepartureDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDepartureDate>
              <FileName>sample string 14</FileName>
              <HolidayCheck>sample string 11</HolidayCheck>
              <LegCode>sample string 3</LegCode>
              <LegId>2</LegId>
              <LegNumber>1</LegNumber>
              <OriginShippingPointCode>sample string 7</OriginShippingPointCode>
              <OriginShippingPointId>6</OriginShippingPointId>
              <OriginTypeCode>sample string 4</OriginTypeCode>
              <OriginZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </OriginZone>
              <ServiceSchedule>
                <CutoffTime>PT0.1234567S</CutoffTime>
                <DeliveryDays>sample string 4</DeliveryDays>
                <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
                <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
                <PickupDays>sample string 2</PickupDays>
                <PickupTimeEnd>PT0.1234567S</PickupTimeEnd>
                <PickupTimeStart>PT0.1234567S</PickupTimeStart>
                <ServiceScheduleId>1</ServiceScheduleId>
                <TransitDays>sample string 3</TransitDays>
              </ServiceSchedule>
              <SheetName>sample string 15</SheetName>
              <TransitTime>10</TransitTime>
            </Leg>
            <Leg>
              <DestinationShippingPointCode>sample string 9</DestinationShippingPointCode>
              <DestinationShippingPointId>8</DestinationShippingPointId>
              <DestinationTypeCode>sample string 5</DestinationTypeCode>
              <DestinationZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </DestinationZone>
              <EstimatedArrivalDate>2025-04-19T14:42:39.5802501+00:00</EstimatedArrivalDate>
              <EstimatedDepartureDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDepartureDate>
              <FileName>sample string 14</FileName>
              <HolidayCheck>sample string 11</HolidayCheck>
              <LegCode>sample string 3</LegCode>
              <LegId>2</LegId>
              <LegNumber>1</LegNumber>
              <OriginShippingPointCode>sample string 7</OriginShippingPointCode>
              <OriginShippingPointId>6</OriginShippingPointId>
              <OriginTypeCode>sample string 4</OriginTypeCode>
              <OriginZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </OriginZone>
              <ServiceSchedule>
                <CutoffTime>PT0.1234567S</CutoffTime>
                <DeliveryDays>sample string 4</DeliveryDays>
                <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
                <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
                <PickupDays>sample string 2</PickupDays>
                <PickupTimeEnd>PT0.1234567S</PickupTimeEnd>
                <PickupTimeStart>PT0.1234567S</PickupTimeStart>
                <ServiceScheduleId>1</ServiceScheduleId>
                <TransitDays>sample string 3</TransitDays>
              </ServiceSchedule>
              <SheetName>sample string 15</SheetName>
              <TransitTime>10</TransitTime>
            </Leg>
          </Legs>
          <PickupZone>
            <CountryCode>sample string 2</CountryCode>
            <PostalCodeEnd>sample string 4</PostalCodeEnd>
            <PostalCodeStart>sample string 3</PostalCodeStart>
            <ZoneCode>sample string 1</ZoneCode>
          </PickupZone>
          <SheetName>sample string 6</SheetName>
        </Lane>
        <Lane>
          <DeliveryZone>
            <CountryCode>sample string 2</CountryCode>
            <PostalCodeEnd>sample string 4</PostalCodeEnd>
            <PostalCodeStart>sample string 3</PostalCodeStart>
            <ZoneCode>sample string 1</ZoneCode>
          </DeliveryZone>
          <Enabled>true</Enabled>
          <EnabledStateRemarks>sample string 4</EnabledStateRemarks>
          <FileName>sample string 5</FileName>
          <LaneCode>sample string 2</LaneCode>
          <LaneId>1</LaneId>
          <Legs>
            <Leg>
              <DestinationShippingPointCode>sample string 9</DestinationShippingPointCode>
              <DestinationShippingPointId>8</DestinationShippingPointId>
              <DestinationTypeCode>sample string 5</DestinationTypeCode>
              <DestinationZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </DestinationZone>
              <EstimatedArrivalDate>2025-04-19T14:42:39.5802501+00:00</EstimatedArrivalDate>
              <EstimatedDepartureDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDepartureDate>
              <FileName>sample string 14</FileName>
              <HolidayCheck>sample string 11</HolidayCheck>
              <LegCode>sample string 3</LegCode>
              <LegId>2</LegId>
              <LegNumber>1</LegNumber>
              <OriginShippingPointCode>sample string 7</OriginShippingPointCode>
              <OriginShippingPointId>6</OriginShippingPointId>
              <OriginTypeCode>sample string 4</OriginTypeCode>
              <OriginZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </OriginZone>
              <ServiceSchedule>
                <CutoffTime>PT0.1234567S</CutoffTime>
                <DeliveryDays>sample string 4</DeliveryDays>
                <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
                <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
                <PickupDays>sample string 2</PickupDays>
                <PickupTimeEnd>PT0.1234567S</PickupTimeEnd>
                <PickupTimeStart>PT0.1234567S</PickupTimeStart>
                <ServiceScheduleId>1</ServiceScheduleId>
                <TransitDays>sample string 3</TransitDays>
              </ServiceSchedule>
              <SheetName>sample string 15</SheetName>
              <TransitTime>10</TransitTime>
            </Leg>
            <Leg>
              <DestinationShippingPointCode>sample string 9</DestinationShippingPointCode>
              <DestinationShippingPointId>8</DestinationShippingPointId>
              <DestinationTypeCode>sample string 5</DestinationTypeCode>
              <DestinationZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </DestinationZone>
              <EstimatedArrivalDate>2025-04-19T14:42:39.5802501+00:00</EstimatedArrivalDate>
              <EstimatedDepartureDate>2025-04-19T14:42:39.5802501+00:00</EstimatedDepartureDate>
              <FileName>sample string 14</FileName>
              <HolidayCheck>sample string 11</HolidayCheck>
              <LegCode>sample string 3</LegCode>
              <LegId>2</LegId>
              <LegNumber>1</LegNumber>
              <OriginShippingPointCode>sample string 7</OriginShippingPointCode>
              <OriginShippingPointId>6</OriginShippingPointId>
              <OriginTypeCode>sample string 4</OriginTypeCode>
              <OriginZone>
                <CountryCode>sample string 2</CountryCode>
                <PostalCodeEnd>sample string 4</PostalCodeEnd>
                <PostalCodeStart>sample string 3</PostalCodeStart>
                <ZoneCode>sample string 1</ZoneCode>
              </OriginZone>
              <ServiceSchedule>
                <CutoffTime>PT0.1234567S</CutoffTime>
                <DeliveryDays>sample string 4</DeliveryDays>
                <DeliveryTimeEnd>PT0.1234567S</DeliveryTimeEnd>
                <DeliveryTimeStart>PT0.1234567S</DeliveryTimeStart>
                <PickupDays>sample string 2</PickupDays>
                <PickupTimeEnd>PT0.1234567S</PickupTimeEnd>
                <PickupTimeStart>PT0.1234567S</PickupTimeStart>
                <ServiceScheduleId>1</ServiceScheduleId>
                <TransitDays>sample string 3</TransitDays>
              </ServiceSchedule>
              <SheetName>sample string 15</SheetName>
              <TransitTime>10</TransitTime>
            </Leg>
          </Legs>
          <PickupZone>
            <CountryCode>sample string 2</CountryCode>
            <PostalCodeEnd>sample string 4</PostalCodeEnd>
            <PostalCodeStart>sample string 3</PostalCodeStart>
            <ZoneCode>sample string 1</ZoneCode>
          </PickupZone>
          <SheetName>sample string 6</SheetName>
        </Lane>
      </Lanes>
      <MatchQuality>
        <ChargeableFactorValueIsInRange>true</ChargeableFactorValueIsInRange>
        <DeliveryDateIsOK>true</DeliveryDateIsOK>
        <DeliveryTimeIsOK>true</DeliveryTimeIsOK>
        <DgClassesAreOK>true</DgClassesAreOK>
        <DivisionMatchLevel>sample string 12</DivisionMatchLevel>
        <FreightRateCurrencyExchangeIsOK>true</FreightRateCurrencyExchangeIsOK>
        <PickupDateIsOK>true</PickupDateIsOK>
        <PickupTimeIsOK>true</PickupTimeIsOK>
        <SurchargeCurrencyExchangeIsOK>true</SurchargeCurrencyExchangeIsOK>
        <ThereAreNoRestrictions>true</ThereAreNoRestrictions>
        <UnNumbersAreOK>true</UnNumbersAreOK>
        <Value>1</Value>
      </MatchQuality>
      <MoreInfo>
        <AcceptableDgClasses xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </AcceptableDgClasses>
        <AcceptableUnNumbers xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </AcceptableUnNumbers>
        <BookingCutOffTime>PT0.1234567S</BookingCutOffTime>
        <BookingCutOffTimeSource>sample string 3</BookingCutOffTimeSource>
        <ContractDateEnd>2025-04-19T14:42:39.5802501+00:00</ContractDateEnd>
        <ContractDateStart>2025-04-19T14:42:39.5802501+00:00</ContractDateStart>
        <DeliveryDays>sample string 6</DeliveryDays>
        <DeliveryZone>
          <CountryCode>sample string 2</CountryCode>
          <PostalCodeEnd>sample string 4</PostalCodeEnd>
          <PostalCodeStart>sample string 3</PostalCodeStart>
          <ZoneCode>sample string 1</ZoneCode>
        </DeliveryZone>
        <DuplicateService>true</DuplicateService>
        <DuplicateServicePriority>12</DuplicateServicePriority>
        <FileName>sample string 9</FileName>
        <HolidayCheck>sample string 8</HolidayCheck>
        <PickupDays>sample string 4</PickupDays>
        <PickupZone>
          <CountryCode>sample string 2</CountryCode>
          <PostalCodeEnd>sample string 4</PostalCodeEnd>
          <PostalCodeStart>sample string 3</PostalCodeStart>
          <ZoneCode>sample string 1</ZoneCode>
        </PickupZone>
        <RateCalculation>
          <BaseCharge>5</BaseCharge>
          <ChargePerUnit>1</ChargePerUnit>
          <ChargeableFactorCode>sample string 1</ChargeableFactorCode>
          <ChargeableFactorEnd>3</ChargeableFactorEnd>
          <ChargeableFactorStart>2</ChargeableFactorStart>
          <ChargeableFactorValue>4</ChargeableFactorValue>
          <ChargeableUnit>1</ChargeableUnit>
          <ChargeableUnitCount>1</ChargeableUnitCount>
          <IsChargePerExtraUnit>true</IsChargePerExtraUnit>
          <MinCharge>1</MinCharge>
          <MinChargePerPackage>1</MinChargePerPackage>
          <PackageRateCalculations xmlns:d6p1="http://schemas.datacontract.org/2004/07/TranspariX.Engine.DataClasses.Calculations">
            <d6p1:PackageRateCalculation>
              <d6p1:BaseCharge>5</d6p1:BaseCharge>
              <d6p1:ChargePerUnit>1</d6p1:ChargePerUnit>
              <d6p1:ChargeableFactorCode>sample string 1</d6p1:ChargeableFactorCode>
              <d6p1:ChargeableFactorEnd>3</d6p1:ChargeableFactorEnd>
              <d6p1:ChargeableFactorStart>2</d6p1:ChargeableFactorStart>
              <d6p1:ChargeableFactorValue>4</d6p1:ChargeableFactorValue>
              <d6p1:ChargeableUnit>1</d6p1:ChargeableUnit>
              <d6p1:ChargeableUnitCount>1</d6p1:ChargeableUnitCount>
              <d6p1:IsChargePerExtraUnit>true</d6p1:IsChargePerExtraUnit>
              <d6p1:MinCharge>1</d6p1:MinCharge>
            </d6p1:PackageRateCalculation>
            <d6p1:PackageRateCalculation>
              <d6p1:BaseCharge>5</d6p1:BaseCharge>
              <d6p1:ChargePerUnit>1</d6p1:ChargePerUnit>
              <d6p1:ChargeableFactorCode>sample string 1</d6p1:ChargeableFactorCode>
              <d6p1:ChargeableFactorEnd>3</d6p1:ChargeableFactorEnd>
              <d6p1:ChargeableFactorStart>2</d6p1:ChargeableFactorStart>
              <d6p1:ChargeableFactorValue>4</d6p1:ChargeableFactorValue>
              <d6p1:ChargeableUnit>1</d6p1:ChargeableUnit>
              <d6p1:ChargeableUnitCount>1</d6p1:ChargeableUnitCount>
              <d6p1:IsChargePerExtraUnit>true</d6p1:IsChargePerExtraUnit>
              <d6p1:MinCharge>1</d6p1:MinCharge>
            </d6p1:PackageRateCalculation>
          </PackageRateCalculations>
        </RateCalculation>
        <Restrictions>
          <Restriction>
            <AppliesToAllGoodsClassifications>true</AppliesToAllGoodsClassifications>
            <AppliesToAllPackageTypes>true</AppliesToAllPackageTypes>
            <AppliesToAllServiceLevels>true</AppliesToAllServiceLevels>
            <Enabled>true</Enabled>
            <FileName>sample string 7</FileName>
            <RestrictedDimension>true</RestrictedDimension>
            <RestrictedGoodsClassification>true</RestrictedGoodsClassification>
            <RestrictedServiceLevel>true</RestrictedServiceLevel>
            <RestrictionCode>sample string 3</RestrictionCode>
            <RestrictionCondition>
              <ConditionFormula>sample string 1</ConditionFormula>
              <HasBeenMet>true</HasBeenMet>
              <SubconditionAtPackageLevel>sample string 2</SubconditionAtPackageLevel>
              <SubconditionAtShipmentLevel>sample string 3</SubconditionAtShipmentLevel>
              <SubconditionOperator>sample string 4</SubconditionOperator>
            </RestrictionCondition>
            <RestrictionId>2</RestrictionId>
            <SheetName>sample string 8</SheetName>
            <UOMInfo>
              <DimensionUOM i:nil="true" />
              <DistanceUOM i:nil="true" />
              <VolumeUOM i:nil="true" />
              <WeightUOM i:nil="true" />
            </UOMInfo>
          </Restriction>
          <Restriction>
            <AppliesToAllGoodsClassifications>true</AppliesToAllGoodsClassifications>
            <AppliesToAllPackageTypes>true</AppliesToAllPackageTypes>
            <AppliesToAllServiceLevels>true</AppliesToAllServiceLevels>
            <Enabled>true</Enabled>
            <FileName>sample string 7</FileName>
            <RestrictedDimension>true</RestrictedDimension>
            <RestrictedGoodsClassification>true</RestrictedGoodsClassification>
            <RestrictedServiceLevel>true</RestrictedServiceLevel>
            <RestrictionCode>sample string 3</RestrictionCode>
            <RestrictionCondition>
              <ConditionFormula>sample string 1</ConditionFormula>
              <HasBeenMet>true</HasBeenMet>
              <SubconditionAtPackageLevel>sample string 2</SubconditionAtPackageLevel>
              <SubconditionAtShipmentLevel>sample string 3</SubconditionAtShipmentLevel>
              <SubconditionOperator>sample string 4</SubconditionOperator>
            </RestrictionCondition>
            <RestrictionId>2</RestrictionId>
            <SheetName>sample string 8</SheetName>
            <UOMInfo>
              <DimensionUOM i:nil="true" />
              <DistanceUOM i:nil="true" />
              <VolumeUOM i:nil="true" />
              <WeightUOM i:nil="true" />
            </UOMInfo>
          </Restriction>
        </Restrictions>
        <Rounding>
          <DecimalPlacesForDimension>1</DecimalPlacesForDimension>
          <DecimalPlacesForLoadingLength>1</DecimalPlacesForLoadingLength>
          <DecimalPlacesForVolume>1</DecimalPlacesForVolume>
          <DecimalPlacesForWeight>1</DecimalPlacesForWeight>
          <RoundingCode>sample string 1</RoundingCode>
        </Rounding>
        <SaturdayDelivery>true</SaturdayDelivery>
        <SheetName>sample string 10</SheetName>
        <Surcharges>
          <Surcharge>
            <ContractTypeCode>sample string 9</ContractTypeCode>
            <CurrencyCode>sample string 17</CurrencyCode>
            <CurrencyCodeBeforeExchange>sample string 15</CurrencyCodeBeforeExchange>
            <Enabled>true</Enabled>
            <EnabledStateRemarks>sample string 2</EnabledStateRemarks>
            <FileName>sample string 11</FileName>
            <FuelSurchargeBasis>true</FuelSurchargeBasis>
            <IncotermDutyCode>sample string 10</IncotermDutyCode>
            <SheetName>sample string 12</SheetName>
            <SurchargeAmount>18</SurchargeAmount>
            <SurchargeAmountBeforeExchange>16</SurchargeAmountBeforeExchange>
            <SurchargeCalculation>
              <FixedSurcharge>1</FixedSurcharge>
              <MaxSurcharge>1</MaxSurcharge>
              <MaxWeightWithoutSurcharge>1</MaxWeightWithoutSurcharge>
              <MinSurcharge>1</MinSurcharge>
              <PercentageSurcharge>1</PercentageSurcharge>
              <SurchargePerUnit>1</SurchargePerUnit>
              <SurchargeablePackageCount>1</SurchargeablePackageCount>
              <SurchargeableUnit>1</SurchargeableUnit>
              <SurchargeableWeightCode>sample string 1</SurchargeableWeightCode>
            </SurchargeCalculation>
            <SurchargeCategoryCode>sample string 5</SurchargeCategoryCode>
            <SurchargeCode>sample string 4</SurchargeCode>
            <SurchargeCondition>
              <AppliesToIncoterm>true</AppliesToIncoterm>
              <HasBeenMet>true</HasBeenMet>
              <SubconditionAtPackageLevel>sample string 2</SubconditionAtPackageLevel>
              <SubconditionAtShipmentLevel>sample string 3</SubconditionAtShipmentLevel>
              <SubconditionOperator>sample string 4</SubconditionOperator>
            </SurchargeCondition>
            <SurchargeCurrencyExchangeIsOK>true</SurchargeCurrencyExchangeIsOK>
            <SurchargeDescription>sample string 7</SurchargeDescription>
            <SurchargeId>3</SurchargeId>
            <SurchargeName>sample string 6</SurchargeName>
            <SurchargeTypeCode>sample string 13</SurchargeTypeCode>
            <SurchargeTypeName>sample string 14</SurchargeTypeName>
            <UOMInfo>
              <DimensionUOM i:nil="true" />
              <DistanceUOM i:nil="true" />
              <VolumeUOM i:nil="true" />
              <WeightUOM i:nil="true" />
            </UOMInfo>
          </Surcharge>
          <Surcharge>
            <ContractTypeCode>sample string 9</ContractTypeCode>
            <CurrencyCode>sample string 17</CurrencyCode>
            <CurrencyCodeBeforeExchange>sample string 15</CurrencyCodeBeforeExchange>
            <Enabled>true</Enabled>
            <EnabledStateRemarks>sample string 2</EnabledStateRemarks>
            <FileName>sample string 11</FileName>
            <FuelSurchargeBasis>true</FuelSurchargeBasis>
            <IncotermDutyCode>sample string 10</IncotermDutyCode>
            <SheetName>sample string 12</SheetName>
            <SurchargeAmount>18</SurchargeAmount>
            <SurchargeAmountBeforeExchange>16</SurchargeAmountBeforeExchange>
            <SurchargeCalculation>
              <FixedSurcharge>1</FixedSurcharge>
              <MaxSurcharge>1</MaxSurcharge>
              <MaxWeightWithoutSurcharge>1</MaxWeightWithoutSurcharge>
              <MinSurcharge>1</MinSurcharge>
              <PercentageSurcharge>1</PercentageSurcharge>
              <SurchargePerUnit>1</SurchargePerUnit>
              <SurchargeablePackageCount>1</SurchargeablePackageCount>
              <SurchargeableUnit>1</SurchargeableUnit>
              <SurchargeableWeightCode>sample string 1</SurchargeableWeightCode>
            </SurchargeCalculation>
            <SurchargeCategoryCode>sample string 5</SurchargeCategoryCode>
            <SurchargeCode>sample string 4</SurchargeCode>
            <SurchargeCondition>
              <AppliesToIncoterm>true</AppliesToIncoterm>
              <HasBeenMet>true</HasBeenMet>
              <SubconditionAtPackageLevel>sample string 2</SubconditionAtPackageLevel>
              <SubconditionAtShipmentLevel>sample string 3</SubconditionAtShipmentLevel>
              <SubconditionOperator>sample string 4</SubconditionOperator>
            </SurchargeCondition>
            <SurchargeCurrencyExchangeIsOK>true</SurchargeCurrencyExchangeIsOK>
            <SurchargeDescription>sample string 7</SurchargeDescription>
            <SurchargeId>3</SurchargeId>
            <SurchargeName>sample string 6</SurchargeName>
            <SurchargeTypeCode>sample string 13</SurchargeTypeCode>
            <SurchargeTypeName>sample string 14</SurchargeTypeName>
            <UOMInfo>
              <DimensionUOM i:nil="true" />
              <DistanceUOM i:nil="true" />
              <VolumeUOM i:nil="true" />
              <WeightUOM i:nil="true" />
            </UOMInfo>
          </Surcharge>
        </Surcharges>
        <TransitDays>sample string 5</TransitDays>
        <UOMInfo i:nil="true" />
        <WeightCalculation>
          <ActualWeight>4</ActualWeight>
          <ActualWeightUOM>sample string 5</ActualWeightUOM>
          <ChargeableWeight>2</ChargeableWeight>
          <ChargeableWeightCode>sample string 1</ChargeableWeightCode>
          <ChargeableWeightUOM>sample string 3</ChargeableWeightUOM>
          <LoadingLengthWeight>7</LoadingLengthWeight>
          <LoadingLengthWeightMultiplier>1</LoadingLengthWeightMultiplier>
          <LoadingLengthWeightMultiplierUOM>sample string 6</LoadingLengthWeightMultiplierUOM>
          <LoadingLengthWeightUOM>sample string 8</LoadingLengthWeightUOM>
          <OversizePackageLengthGirthThreshold>1</OversizePackageLengthGirthThreshold>
          <OversizePackageLengthGirthThresholdUOM>sample string 14</OversizePackageLengthGirthThresholdUOM>
          <OversizePackageLengthThreshold>1</OversizePackageLengthThreshold>
          <OversizePackageLengthThresholdUOM>sample string 13</OversizePackageLengthThresholdUOM>
          <OversizePackageMinChargeableWeight>1</OversizePackageMinChargeableWeight>
          <OversizePackageMinChargeableWeightUOM>sample string 15</OversizePackageMinChargeableWeightUOM>
          <PackageWeightCalculations xmlns:d6p1="http://schemas.datacontract.org/2004/07/TranspariX.Engine.DataClasses.Calculations">
            <d6p1:PackageWeightCalculation>
              <d6p1:ActualWeight>4</d6p1:ActualWeight>
              <d6p1:ActualWeightUOM>sample string 5</d6p1:ActualWeightUOM>
              <d6p1:ChargeableWeight>2</d6p1:ChargeableWeight>
              <d6p1:ChargeableWeightCode>sample string 1</d6p1:ChargeableWeightCode>
              <d6p1:ChargeableWeightUOM>sample string 3</d6p1:ChargeableWeightUOM>
              <d6p1:DimensionUOM>sample string 9</d6p1:DimensionUOM>
              <d6p1:Height>8</d6p1:Height>
              <d6p1:Length>6</d6p1:Length>
              <d6p1:Volume>10</d6p1:Volume>
              <d6p1:VolumeUOM>sample string 11</d6p1:VolumeUOM>
              <d6p1:VolumeWeight>12</d6p1:VolumeWeight>
              <d6p1:VolumeWeightUOM>sample string 13</d6p1:VolumeWeightUOM>
              <d6p1:Width>7</d6p1:Width>
            </d6p1:PackageWeightCalculation>
            <d6p1:PackageWeightCalculation>
              <d6p1:ActualWeight>4</d6p1:ActualWeight>
              <d6p1:ActualWeightUOM>sample string 5</d6p1:ActualWeightUOM>
              <d6p1:ChargeableWeight>2</d6p1:ChargeableWeight>
              <d6p1:ChargeableWeightCode>sample string 1</d6p1:ChargeableWeightCode>
              <d6p1:ChargeableWeightUOM>sample string 3</d6p1:ChargeableWeightUOM>
              <d6p1:DimensionUOM>sample string 9</d6p1:DimensionUOM>
              <d6p1:Height>8</d6p1:Height>
              <d6p1:Length>6</d6p1:Length>
              <d6p1:Volume>10</d6p1:Volume>
              <d6p1:VolumeUOM>sample string 11</d6p1:VolumeUOM>
              <d6p1:VolumeWeight>12</d6p1:VolumeWeight>
              <d6p1:VolumeWeightUOM>sample string 13</d6p1:VolumeWeightUOM>
              <d6p1:Width>7</d6p1:Width>
            </d6p1:PackageWeightCalculation>
          </PackageWeightCalculations>
          <VolumeWeight>11</VolumeWeight>
          <VolumeWeightMultiplier>1</VolumeWeightMultiplier>
          <VolumeWeightMultiplierUOM>sample string 9</VolumeWeightMultiplierUOM>
          <VolumeWeightThreshold>1</VolumeWeightThreshold>
          <VolumeWeightThresholdUOM>sample string 10</VolumeWeightThresholdUOM>
          <VolumeWeightUOM>sample string 12</VolumeWeightUOM>
        </WeightCalculation>
      </MoreInfo>
      <RateCode>sample string 4</RateCode>
      <RateId>3</RateId>
      <Residential>true</Residential>
      <ServiceCode>sample string 7</ServiceCode>
      <SortingPointCode>sample string 11</SortingPointCode>
      <TotalCost>1</TotalCost>
      <TotalSurcharge>1</TotalSurcharge>
      <TransitTime>1</TransitTime>
    </ForwarderService>
  </ForwarderServices>
  <PerformanceInfo>
    <EndDateTime>2025-04-19T14:42:39.5958729+00:00</EndDateTime>
    <StartDateTime>2025-04-19T14:42:39.5958729+00:00</StartDateTime>
    <TotalElapsedTime>PT0.1234567S</TotalElapsedTime>
  </PerformanceInfo>
  <RouteCostBreakdown>
    <ListOfCostPerShipment>
      <CostPerShipment>
        <PartOfFreightRate>3</PartOfFreightRate>
        <PartOfTotalCost>5</PartOfTotalCost>
        <PartOfTotalSurcharge>4</PartOfTotalSurcharge>
        <PercentageOfFreightRate>6</PercentageOfFreightRate>
        <PercentageOfTotalCost>8</PercentageOfTotalCost>
        <PercentageOfTotalSurcharge>7</PercentageOfTotalSurcharge>
        <RateCode>sample string 2</RateCode>
        <ShipmentId>1</ShipmentId>
      </CostPerShipment>
      <CostPerShipment>
        <PartOfFreightRate>3</PartOfFreightRate>
        <PartOfTotalCost>5</PartOfTotalCost>
        <PartOfTotalSurcharge>4</PartOfTotalSurcharge>
        <PercentageOfFreightRate>6</PercentageOfFreightRate>
        <PercentageOfTotalCost>8</PercentageOfTotalCost>
        <PercentageOfTotalSurcharge>7</PercentageOfTotalSurcharge>
        <RateCode>sample string 2</RateCode>
        <ShipmentId>1</ShipmentId>
      </CostPerShipment>
    </ListOfCostPerShipment>
    <ListOfCostPerStop>
      <CostPerStop>
        <PartOfFreightRate>3</PartOfFreightRate>
        <PartOfTotalCost>5</PartOfTotalCost>
        <PartOfTotalSurcharge>4</PartOfTotalSurcharge>
        <PercentageOfFreightRate>6</PercentageOfFreightRate>
        <PercentageOfTotalCost>8</PercentageOfTotalCost>
        <PercentageOfTotalSurcharge>7</PercentageOfTotalSurcharge>
        <RateCode>sample string 2</RateCode>
        <StopId>1</StopId>
      </CostPerStop>
      <CostPerStop>
        <PartOfFreightRate>3</PartOfFreightRate>
        <PartOfTotalCost>5</PartOfTotalCost>
        <PartOfTotalSurcharge>4</PartOfTotalSurcharge>
        <PercentageOfFreightRate>6</PercentageOfFreightRate>
        <PercentageOfTotalCost>8</PercentageOfTotalCost>
        <PercentageOfTotalSurcharge>7</PercentageOfTotalSurcharge>
        <RateCode>sample string 2</RateCode>
        <StopId>1</StopId>
      </CostPerStop>
    </ListOfCostPerStop>
  </RouteCostBreakdown>
  <ShipmentCostBreakdown>
    <ListOfCostPerPackage>
      <CostPerPackage>
        <PackageId>1</PackageId>
        <PartOfFreightRate>3</PartOfFreightRate>
        <PartOfTotalCost>5</PartOfTotalCost>
        <PartOfTotalSurcharge>4</PartOfTotalSurcharge>
        <PercentageOfFreightRate>6</PercentageOfFreightRate>
        <PercentageOfTotalCost>8</PercentageOfTotalCost>
        <PercentageOfTotalSurcharge>7</PercentageOfTotalSurcharge>
        <RateCode>sample string 2</RateCode>
      </CostPerPackage>
      <CostPerPackage>
        <PackageId>1</PackageId>
        <PartOfFreightRate>3</PartOfFreightRate>
        <PartOfTotalCost>5</PartOfTotalCost>
        <PartOfTotalSurcharge>4</PartOfTotalSurcharge>
        <PercentageOfFreightRate>6</PercentageOfFreightRate>
        <PercentageOfTotalCost>8</PercentageOfTotalCost>
        <PercentageOfTotalSurcharge>7</PercentageOfTotalSurcharge>
        <RateCode>sample string 2</RateCode>
      </CostPerPackage>
    </ListOfCostPerPackage>
    <ListOfSurchargePerPackage>
      <SurchargePerPackage>
        <PackageId>1</PackageId>
        <PartOfSurcharge>4</PartOfSurcharge>
        <PercentageOfSurcharge>5</PercentageOfSurcharge>
        <RateCode>sample string 2</RateCode>
        <SurchargeCode>sample string 3</SurchargeCode>
      </SurchargePerPackage>
      <SurchargePerPackage>
        <PackageId>1</PackageId>
        <PartOfSurcharge>4</PartOfSurcharge>
        <PercentageOfSurcharge>5</PercentageOfSurcharge>
        <RateCode>sample string 2</RateCode>
        <SurchargeCode>sample string 3</SurchargeCode>
      </SurchargePerPackage>
    </ListOfSurchargePerPackage>
  </ShipmentCostBreakdown>
</ResultData>