OpenXE/classes/Carrier/Dhl/Data/Customer.php
2022-11-14 22:29:42 +01:00

14 lines
236 B
PHP

<?php
namespace Xentral\Carrier\Dhl\Data;
class Customer
{
public Name $Name;
public ?string $vatID;
public string $EKP;
public NativeAddress $Address;
public Contact $Contact;
public ?Bank $Bank;
public ?string $note;
}