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