1: <?php
2: /*
3: * This file was automatically generated.
4: */
5: namespace Worldline\Acquiring\Sdk\V1\Domain;
6:
7: use UnexpectedValueException;
8: use Worldline\Acquiring\Sdk\Domain\DataObject;
9:
10: /**
11: * @package Worldline\Acquiring\Sdk\V1\Domain
12: */
13: class CardPaymentDataForResponse extends DataObject
14: {
15: /**
16: * @var string
17: */
18: public $brand = null;
19:
20: /**
21: * @var ECommerceDataForResponse
22: */
23: public $ecommerceData = null;
24:
25: /**
26: * @var PointOfSaleData
27: */
28: public $pointOfSaleData = null;
29:
30: /**
31: * @return object
32: */
33: public function toObject()
34: {
35: $object = parent::toObject();
36: if (!is_null($this->brand)) {
37: $object->brand = $this->brand;
38: }
39: if (!is_null($this->ecommerceData)) {
40: $object->ecommerceData = $this->ecommerceData->toObject();
41: }
42: if (!is_null($this->pointOfSaleData)) {
43: $object->pointOfSaleData = $this->pointOfSaleData->toObject();
44: }
45: return $object;
46: }
47:
48: /**
49: * @param object $object
50: * @return $this
51: * @throws UnexpectedValueException
52: */
53: public function fromObject($object)
54: {
55: parent::fromObject($object);
56: if (property_exists($object, 'brand')) {
57: $this->brand = $object->brand;
58: }
59: if (property_exists($object, 'ecommerceData')) {
60: if (!is_object($object->ecommerceData)) {
61: throw new UnexpectedValueException('value \'' . print_r($object->ecommerceData, true) . '\' is not an object');
62: }
63: $value = new ECommerceDataForResponse();
64: $this->ecommerceData = $value->fromObject($object->ecommerceData);
65: }
66: if (property_exists($object, 'pointOfSaleData')) {
67: if (!is_object($object->pointOfSaleData)) {
68: throw new UnexpectedValueException('value \'' . print_r($object->pointOfSaleData, true) . '\' is not an object');
69: }
70: $value = new PointOfSaleData();
71: $this->pointOfSaleData = $value->fromObject($object->pointOfSaleData);
72: }
73: return $this;
74: }
75: }
76: