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 MandateMerchantAction extends DataObject |
15: | { |
16: | |
17: | |
18: | |
19: | public $actionType = null; |
20: | |
21: | |
22: | |
23: | |
24: | public $redirectData = null; |
25: | |
26: | |
27: | |
28: | |
29: | public function toObject() |
30: | { |
31: | $object = parent::toObject(); |
32: | if (!is_null($this->actionType)) { |
33: | $object->actionType = $this->actionType; |
34: | } |
35: | if (!is_null($this->redirectData)) { |
36: | $object->redirectData = $this->redirectData->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, 'actionType')) { |
50: | $this->actionType = $object->actionType; |
51: | } |
52: | if (property_exists($object, 'redirectData')) { |
53: | if (!is_object($object->redirectData)) { |
54: | throw new UnexpectedValueException('value \'' . print_r($object->redirectData, true) . '\' is not an object'); |
55: | } |
56: | $value = new MandateRedirectData(); |
57: | $this->redirectData = $value->fromObject($object->redirectData); |
58: | } |
59: | return $this; |
60: | } |
61: | } |
62: | |