mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-16 04:57:15 +01:00
13 lines
258 B
PHP
13 lines
258 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Carrier\Dhl\Data;
|
||
|
|
||
|
class ExportDocPosition
|
||
|
{
|
||
|
public string $description;
|
||
|
public string $countryCodeOrigin;
|
||
|
public string $customsTariffNumber;
|
||
|
public int $amount;
|
||
|
public float $netWeightInKG;
|
||
|
public float $customsValue;
|
||
|
}
|