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 PaymentProductFieldFormElement extends DataObject |
15: | { |
16: | |
17: | |
18: | |
19: | public $type = null; |
20: | |
21: | |
22: | |
23: | |
24: | public $valueMapping = null; |
25: | |
26: | |
27: | |
28: | |
29: | public function toObject() |
30: | { |
31: | $object = parent::toObject(); |
32: | if (!is_null($this->type)) { |
33: | $object->type = $this->type; |
34: | } |
35: | if (!is_null($this->valueMapping)) { |
36: | $object->valueMapping = []; |
37: | foreach ($this->valueMapping as $element) { |
38: | if (!is_null($element)) { |
39: | $object->valueMapping[] = $element->toObject(); |
40: | } |
41: | } |
42: | } |
43: | return $object; |
44: | } |
45: | |
46: | |
47: | |
48: | |
49: | |
50: | |
51: | public function fromObject($object) |
52: | { |
53: | parent::fromObject($object); |
54: | if (property_exists($object, 'type')) { |
55: | $this->type = $object->type; |
56: | } |
57: | if (property_exists($object, 'valueMapping')) { |
58: | if (!is_array($object->valueMapping) && !is_object($object->valueMapping)) { |
59: | throw new UnexpectedValueException('value \'' . print_r($object->valueMapping, true) . '\' is not an array or object'); |
60: | } |
61: | $this->valueMapping = []; |
62: | foreach ($object->valueMapping as $element) { |
63: | $value = new ValueMappingElement(); |
64: | $this->valueMapping[] = $value->fromObject($element); |
65: | } |
66: | } |
67: | return $this; |
68: | } |
69: | } |
70: | |