mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
14 lines
236 B
PHP
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;
|
|
} |