mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
16 lines
274 B
PHP
16 lines
274 B
PHP
<?php
|
|
|
|
namespace Xentral\Carrier\Dhl\Data;
|
|
|
|
class Shipper
|
|
{
|
|
public Name $Name;
|
|
public NativeAddressNew $Address;
|
|
public ?Communication $Communication;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->Name = new Name();
|
|
$this->Address = new NativeAddressNew();
|
|
}
|
|
} |