1: | <?php |
2: | |
3: | |
4: | |
5: | namespace Worldline\Acquiring\Sdk\V1\Domain; |
6: | |
7: | use UnexpectedValueException; |
8: | use Worldline\Acquiring\Sdk\Domain\DataObject; |
9: | |
10: | |
11: | |
12: | |
13: | class CardPaymentDataForResource extends DataObject |
14: | { |
15: | |
16: | |
17: | |
18: | public $brand = null; |
19: | |
20: | |
21: | |
22: | |
23: | public $pointOfSaleData = null; |
24: | |
25: | |
26: | |
27: | |
28: | public function toObject() |
29: | { |
30: | $object = parent::toObject(); |
31: | if (!is_null($this->brand)) { |
32: | $object->brand = $this->brand; |
33: | } |
34: | if (!is_null($this->pointOfSaleData)) { |
35: | $object->pointOfSaleData = $this->pointOfSaleData->toObject(); |
36: | } |
37: | return $object; |
38: | } |
39: | |
40: | |
41: | |
42: | |
43: | |
44: | |
45: | public function fromObject($object) |
46: | { |
47: | parent::fromObject($object); |
48: | if (property_exists($object, 'brand')) { |
49: | $this->brand = $object->brand; |
50: | } |
51: | if (property_exists($object, 'pointOfSaleData')) { |
52: | if (!is_object($object->pointOfSaleData)) { |
53: | throw new UnexpectedValueException('value \'' . print_r($object->pointOfSaleData, true) . '\' is not an object'); |
54: | } |
55: | $value = new PointOfSaleData(); |
56: | $this->pointOfSaleData = $value->fromObject($object->pointOfSaleData); |
57: | } |
58: | return $this; |
59: | } |
60: | } |
61: | |