2022-11-14 22:29:42 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Xentral\Carrier\Dhl\Data;
|
|
|
|
|
|
|
|
|
|
class Receiver
|
|
|
|
|
{
|
|
|
|
|
public string $name1;
|
2022-11-22 00:21:57 +01:00
|
|
|
public ?ReceiverNativeAddress $Address;
|
2022-11-14 22:29:42 +01:00
|
|
|
public ?PackStation $Packstation;
|
|
|
|
|
public ?Postfiliale $Postfiliale;
|
|
|
|
|
public ?Communication $Communication;
|
|
|
|
|
}
|