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 ApiAccountVerificationResponse extends DataObject |
14: | { |
15: | |
16: | |
17: | |
18: | public $additionalResponseData = null; |
19: | |
20: | |
21: | |
22: | |
23: | public $authorizationCode = null; |
24: | |
25: | |
26: | |
27: | |
28: | public $cardPaymentData = null; |
29: | |
30: | |
31: | |
32: | |
33: | public $operationId = null; |
34: | |
35: | |
36: | |
37: | |
38: | public $references = null; |
39: | |
40: | |
41: | |
42: | |
43: | public $responder = null; |
44: | |
45: | |
46: | |
47: | |
48: | public $responseCode = null; |
49: | |
50: | |
51: | |
52: | |
53: | public $responseCodeCategory = null; |
54: | |
55: | |
56: | |
57: | |
58: | public $responseCodeDescription = null; |
59: | |
60: | |
61: | |
62: | |
63: | public function toObject() |
64: | { |
65: | $object = parent::toObject(); |
66: | if (!is_null($this->additionalResponseData)) { |
67: | $object->additionalResponseData = $this->additionalResponseData->toObject(); |
68: | } |
69: | if (!is_null($this->authorizationCode)) { |
70: | $object->authorizationCode = $this->authorizationCode; |
71: | } |
72: | if (!is_null($this->cardPaymentData)) { |
73: | $object->cardPaymentData = $this->cardPaymentData->toObject(); |
74: | } |
75: | if (!is_null($this->operationId)) { |
76: | $object->operationId = $this->operationId; |
77: | } |
78: | if (!is_null($this->references)) { |
79: | $object->references = $this->references->toObject(); |
80: | } |
81: | if (!is_null($this->responder)) { |
82: | $object->responder = $this->responder; |
83: | } |
84: | if (!is_null($this->responseCode)) { |
85: | $object->responseCode = $this->responseCode; |
86: | } |
87: | if (!is_null($this->responseCodeCategory)) { |
88: | $object->responseCodeCategory = $this->responseCodeCategory; |
89: | } |
90: | if (!is_null($this->responseCodeDescription)) { |
91: | $object->responseCodeDescription = $this->responseCodeDescription; |
92: | } |
93: | return $object; |
94: | } |
95: | |
96: | |
97: | |
98: | |
99: | |
100: | |
101: | public function fromObject($object) |
102: | { |
103: | parent::fromObject($object); |
104: | if (property_exists($object, 'additionalResponseData')) { |
105: | if (!is_object($object->additionalResponseData)) { |
106: | throw new UnexpectedValueException('value \'' . print_r($object->additionalResponseData, true) . '\' is not an object'); |
107: | } |
108: | $value = new AdditionalResponseData(); |
109: | $this->additionalResponseData = $value->fromObject($object->additionalResponseData); |
110: | } |
111: | if (property_exists($object, 'authorizationCode')) { |
112: | $this->authorizationCode = $object->authorizationCode; |
113: | } |
114: | if (property_exists($object, 'cardPaymentData')) { |
115: | if (!is_object($object->cardPaymentData)) { |
116: | throw new UnexpectedValueException('value \'' . print_r($object->cardPaymentData, true) . '\' is not an object'); |
117: | } |
118: | $value = new CardPaymentDataForResponse(); |
119: | $this->cardPaymentData = $value->fromObject($object->cardPaymentData); |
120: | } |
121: | if (property_exists($object, 'operationId')) { |
122: | $this->operationId = $object->operationId; |
123: | } |
124: | if (property_exists($object, 'references')) { |
125: | if (!is_object($object->references)) { |
126: | throw new UnexpectedValueException('value \'' . print_r($object->references, true) . '\' is not an object'); |
127: | } |
128: | $value = new ApiReferencesForResponses(); |
129: | $this->references = $value->fromObject($object->references); |
130: | } |
131: | if (property_exists($object, 'responder')) { |
132: | $this->responder = $object->responder; |
133: | } |
134: | if (property_exists($object, 'responseCode')) { |
135: | $this->responseCode = $object->responseCode; |
136: | } |
137: | if (property_exists($object, 'responseCodeCategory')) { |
138: | $this->responseCodeCategory = $object->responseCodeCategory; |
139: | } |
140: | if (property_exists($object, 'responseCodeDescription')) { |
141: | $this->responseCodeDescription = $object->responseCodeDescription; |
142: | } |
143: | return $this; |
144: | } |
145: | } |
146: | |