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 PaymentProduct3201SpecificOutput extends DataObject |
15: | { |
16: | |
17: | |
18: | |
19: | public $card = null; |
20: | |
21: | |
22: | |
23: | |
24: | public function toObject() |
25: | { |
26: | $object = parent::toObject(); |
27: | if (!is_null($this->card)) { |
28: | $object->card = $this->card->toObject(); |
29: | } |
30: | return $object; |
31: | } |
32: | |
33: | |
34: | |
35: | |
36: | |
37: | |
38: | public function fromObject($object) |
39: | { |
40: | parent::fromObject($object); |
41: | if (property_exists($object, 'card')) { |
42: | if (!is_object($object->card)) { |
43: | throw new UnexpectedValueException('value \'' . print_r($object->card, true) . '\' is not an object'); |
44: | } |
45: | $value = new CardEssentials(); |
46: | $this->card = $value->fromObject($object->card); |
47: | } |
48: | return $this; |
49: | } |
50: | } |
51: | |