1: | <?php |
2: | |
3: | |
4: | |
5: | |
6: | namespace Worldline\Connect\Sdk\V1\Domain; |
7: | |
8: | use UnexpectedValueException; |
9: | use Worldline\Connect\Sdk\Domain\DataObject; |
10: | |
11: | |
12: | |
13: | |
14: | class PersonalInformation extends DataObject |
15: | { |
16: | |
17: | |
18: | |
19: | public $dateOfBirth = null; |
20: | |
21: | |
22: | |
23: | |
24: | public $gender = null; |
25: | |
26: | |
27: | |
28: | |
29: | public $identification = null; |
30: | |
31: | |
32: | |
33: | |
34: | public $name = null; |
35: | |
36: | |
37: | |
38: | |
39: | public function toObject() |
40: | { |
41: | $object = parent::toObject(); |
42: | if (!is_null($this->dateOfBirth)) { |
43: | $object->dateOfBirth = $this->dateOfBirth; |
44: | } |
45: | if (!is_null($this->gender)) { |
46: | $object->gender = $this->gender; |
47: | } |
48: | if (!is_null($this->identification)) { |
49: | $object->identification = $this->identification->toObject(); |
50: | } |
51: | if (!is_null($this->name)) { |
52: | $object->name = $this->name->toObject(); |
53: | } |
54: | return $object; |
55: | } |
56: | |
57: | |
58: | |
59: | |
60: | |
61: | |
62: | public function fromObject($object) |
63: | { |
64: | parent::fromObject($object); |
65: | if (property_exists($object, 'dateOfBirth')) { |
66: | $this->dateOfBirth = $object->dateOfBirth; |
67: | } |
68: | if (property_exists($object, 'gender')) { |
69: | $this->gender = $object->gender; |
70: | } |
71: | if (property_exists($object, 'identification')) { |
72: | if (!is_object($object->identification)) { |
73: | throw new UnexpectedValueException('value \'' . print_r($object->identification, true) . '\' is not an object'); |
74: | } |
75: | $value = new PersonalIdentification(); |
76: | $this->identification = $value->fromObject($object->identification); |
77: | } |
78: | if (property_exists($object, 'name')) { |
79: | if (!is_object($object->name)) { |
80: | throw new UnexpectedValueException('value \'' . print_r($object->name, true) . '\' is not an object'); |
81: | } |
82: | $value = new PersonalName(); |
83: | $this->name = $value->fromObject($object->name); |
84: | } |
85: | return $this; |
86: | } |
87: | } |
88: | |