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 AdditionalResponseData extends DataObject |
14: | { |
15: | |
16: | |
17: | |
18: | public $merchantAdviceCode = null; |
19: | |
20: | |
21: | |
22: | |
23: | public $merchantAdviceCodeDescription = null; |
24: | |
25: | |
26: | |
27: | |
28: | public function toObject() |
29: | { |
30: | $object = parent::toObject(); |
31: | if (!is_null($this->merchantAdviceCode)) { |
32: | $object->merchantAdviceCode = $this->merchantAdviceCode; |
33: | } |
34: | if (!is_null($this->merchantAdviceCodeDescription)) { |
35: | $object->merchantAdviceCodeDescription = $this->merchantAdviceCodeDescription; |
36: | } |
37: | return $object; |
38: | } |
39: | |
40: | |
41: | |
42: | |
43: | |
44: | |
45: | public function fromObject($object) |
46: | { |
47: | parent::fromObject($object); |
48: | if (property_exists($object, 'merchantAdviceCode')) { |
49: | $this->merchantAdviceCode = $object->merchantAdviceCode; |
50: | } |
51: | if (property_exists($object, 'merchantAdviceCodeDescription')) { |
52: | $this->merchantAdviceCodeDescription = $object->merchantAdviceCodeDescription; |
53: | } |
54: | return $this; |
55: | } |
56: | } |
57: | |