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