1: <?php
2: /*
3: * This file was automatically generated.
4: */
5: namespace Worldline\Acquiring\Sdk\V1\Domain;
6:
7: use DateTime;
8: use UnexpectedValueException;
9: use Worldline\Acquiring\Sdk\Domain\DataObject;
10:
11: /**
12: * @package Worldline\Acquiring\Sdk\V1\Domain
13: */
14: class ApiRefundSummaryForResponse extends DataObject
15: {
16: /**
17: * @var ApiReferencesForResponses
18: */
19: public $references = null;
20:
21: /**
22: * @var string
23: */
24: public $refundId = null;
25:
26: /**
27: * @var string
28: */
29: public $status = null;
30:
31: /**
32: * @var DateTime
33: */
34: public $statusTimestamp = null;
35:
36: /**
37: * @return object
38: */
39: public function toObject()
40: {
41: $object = parent::toObject();
42: if (!is_null($this->references)) {
43: $object->references = $this->references->toObject();
44: }
45: if (!is_null($this->refundId)) {
46: $object->refundId = $this->refundId;
47: }
48: if (!is_null($this->status)) {
49: $object->status = $this->status;
50: }
51: if (!is_null($this->statusTimestamp)) {
52: $object->statusTimestamp = $this->statusTimestamp->format('Y-m-d\\TH:i:s.vP');
53: }
54: return $object;
55: }
56:
57: /**
58: * @param object $object
59: * @return $this
60: * @throws UnexpectedValueException
61: */
62: public function fromObject($object)
63: {
64: parent::fromObject($object);
65: if (property_exists($object, 'references')) {
66: if (!is_object($object->references)) {
67: throw new UnexpectedValueException('value \'' . print_r($object->references, true) . '\' is not an object');
68: }
69: $value = new ApiReferencesForResponses();
70: $this->references = $value->fromObject($object->references);
71: }
72: if (property_exists($object, 'refundId')) {
73: $this->refundId = $object->refundId;
74: }
75: if (property_exists($object, 'status')) {
76: $this->status = $object->status;
77: }
78: if (property_exists($object, 'statusTimestamp')) {
79: $this->statusTimestamp = new DateTime($object->statusTimestamp);
80: }
81: return $this;
82: }
83: }
84: