3 declare(strict_types=1);
70 if (is_null($this->type)) {
72 $data = $this->
raw(self::FIELD_TYPE);
76 $this->type = (string) $data;
90 if (is_null($this->firstName)) {
92 $data = $this->
raw(self::FIELD_FIRST_NAME);
96 $this->firstName = (string) $data;
110 if (is_null($this->lastName)) {
112 $data = $this->
raw(self::FIELD_LAST_NAME);
113 if (is_null($data)) {
116 $this->lastName = (string) $data;
130 if (is_null($this->customerNumber)) {
132 $data = $this->
raw(self::FIELD_CUSTOMER_NUMBER);
133 if (is_null($data)) {
136 $this->customerNumber = (string) $data;
const DISCRIMINATOR_VALUE
setCustomerNumber(?string $customerNumber)
__construct(?string $firstName=null, ?string $lastName=null, ?string $customerNumber=null, ?string $type=null)
setLastName(?string $lastName)
setFirstName(?string $firstName)