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