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 ECommerceData extends DataObject |
14: | { |
15: | |
16: | |
17: | |
18: | public $addressVerificationData = null; |
19: | |
20: | |
21: | |
22: | |
23: | public $scaExemptionRequest = null; |
24: | |
25: | |
26: | |
27: | |
28: | public $threeDSecure = null; |
29: | |
30: | |
31: | |
32: | |
33: | public function toObject() |
34: | { |
35: | $object = parent::toObject(); |
36: | if (!is_null($this->addressVerificationData)) { |
37: | $object->addressVerificationData = $this->addressVerificationData->toObject(); |
38: | } |
39: | if (!is_null($this->scaExemptionRequest)) { |
40: | $object->scaExemptionRequest = $this->scaExemptionRequest; |
41: | } |
42: | if (!is_null($this->threeDSecure)) { |
43: | $object->threeDSecure = $this->threeDSecure->toObject(); |
44: | } |
45: | return $object; |
46: | } |
47: | |
48: | |
49: | |
50: | |
51: | |
52: | |
53: | public function fromObject($object) |
54: | { |
55: | parent::fromObject($object); |
56: | if (property_exists($object, 'addressVerificationData')) { |
57: | if (!is_object($object->addressVerificationData)) { |
58: | throw new UnexpectedValueException('value \'' . print_r($object->addressVerificationData, true) . '\' is not an object'); |
59: | } |
60: | $value = new AddressVerificationData(); |
61: | $this->addressVerificationData = $value->fromObject($object->addressVerificationData); |
62: | } |
63: | if (property_exists($object, 'scaExemptionRequest')) { |
64: | $this->scaExemptionRequest = $object->scaExemptionRequest; |
65: | } |
66: | if (property_exists($object, 'threeDSecure')) { |
67: | if (!is_object($object->threeDSecure)) { |
68: | throw new UnexpectedValueException('value \'' . print_r($object->threeDSecure, true) . '\' is not an object'); |
69: | } |
70: | $value = new ThreeDSecure(); |
71: | $this->threeDSecure = $value->fromObject($object->threeDSecure); |
72: | } |
73: | return $this; |
74: | } |
75: | } |
76: | |