CustomsItemData structure

This structure contains details of goods included in a customs shipment. It is used in the CustomsData structure.

Structure Fields

Field Name Type Required? Description
nameEn string(35) Yes English name of the item
namePl string(35) Yes (for individual customs clearance) Polish name of the item
quantity integer Yes Number of components
weight float Yes Weight of the item
value float Yes Value of the goods
tariffCode string(10) Yes (for individual customs clearance) Customs tariff code
countryOfOrigin string(35) No ISO Country Code, for individual customs clearance only

Example:

    <item>
        <nameEn>test</nameEn>
        <namePl>test</namePl>
        <quantity>2</quantity>
        <weight>2.0</weight>
        <value>100</value>
        <tariffCode>001</tariffCode>
    </item>
Go back to topic list