1: <?php
2: /*
3: * This class was auto-generated from the API references found at
4: * https://apireference.connect.worldline-solutions.com/
5: */
6: namespace Worldline\Connect\Sdk\V1\Domain;
7:
8: use UnexpectedValueException;
9:
10: /**
11: * @package Worldline\Connect\Sdk\V1\Domain
12: */
13: class RefundCardMethodSpecificOutput extends RefundMethodSpecificOutput
14: {
15: /**
16: * @var string
17: */
18: public $authorisationCode = null;
19:
20: /**
21: * @var CardEssentials
22: */
23: public $card = null;
24:
25: /**
26: * @return object
27: */
28: public function toObject()
29: {
30: $object = parent::toObject();
31: if (!is_null($this->authorisationCode)) {
32: $object->authorisationCode = $this->authorisationCode;
33: }
34: if (!is_null($this->card)) {
35: $object->card = $this->card->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, 'authorisationCode')) {
49: $this->authorisationCode = $object->authorisationCode;
50: }
51: if (property_exists($object, 'card')) {
52: if (!is_object($object->card)) {
53: throw new UnexpectedValueException('value \'' . print_r($object->card, true) . '\' is not an object');
54: }
55: $value = new CardEssentials();
56: $this->card = $value->fromObject($object->card);
57: }
58: return $this;
59: }
60: }
61: