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