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 SubOperationForRefund extends DataObject
15: {
16: /**
17: * @var AmountData
18: */
19: public $amount = null;
20:
21: /**
22: * @var string
23: */
24: public $operationId = null;
25:
26: /**
27: * @var DateTime
28: */
29: public $operationTimestamp = null;
30:
31: /**
32: * @var string
33: */
34: public $operationType = null;
35:
36: /**
37: * @var string
38: */
39: public $responseCode = null;
40:
41: /**
42: * @var string
43: */
44: public $responseCodeCategory = null;
45:
46: /**
47: * @var string
48: */
49: public $responseCodeDescription = null;
50:
51: /**
52: * @return object
53: */
54: public function toObject()
55: {
56: $object = parent::toObject();
57: if (!is_null($this->amount)) {
58: $object->amount = $this->amount->toObject();
59: }
60: if (!is_null($this->operationId)) {
61: $object->operationId = $this->operationId;
62: }
63: if (!is_null($this->operationTimestamp)) {
64: $object->operationTimestamp = $this->operationTimestamp->format('Y-m-d\\TH:i:s.vP');
65: }
66: if (!is_null($this->operationType)) {
67: $object->operationType = $this->operationType;
68: }
69: if (!is_null($this->responseCode)) {
70: $object->responseCode = $this->responseCode;
71: }
72: if (!is_null($this->responseCodeCategory)) {
73: $object->responseCodeCategory = $this->responseCodeCategory;
74: }
75: if (!is_null($this->responseCodeDescription)) {
76: $object->responseCodeDescription = $this->responseCodeDescription;
77: }
78: return $object;
79: }
80:
81: /**
82: * @param object $object
83: * @return $this
84: * @throws UnexpectedValueException
85: */
86: public function fromObject($object)
87: {
88: parent::fromObject($object);
89: if (property_exists($object, 'amount')) {
90: if (!is_object($object->amount)) {
91: throw new UnexpectedValueException('value \'' . print_r($object->amount, true) . '\' is not an object');
92: }
93: $value = new AmountData();
94: $this->amount = $value->fromObject($object->amount);
95: }
96: if (property_exists($object, 'operationId')) {
97: $this->operationId = $object->operationId;
98: }
99: if (property_exists($object, 'operationTimestamp')) {
100: $this->operationTimestamp = new DateTime($object->operationTimestamp);
101: }
102: if (property_exists($object, 'operationType')) {
103: $this->operationType = $object->operationType;
104: }
105: if (property_exists($object, 'responseCode')) {
106: $this->responseCode = $object->responseCode;
107: }
108: if (property_exists($object, 'responseCodeCategory')) {
109: $this->responseCodeCategory = $object->responseCodeCategory;
110: }
111: if (property_exists($object, 'responseCodeDescription')) {
112: $this->responseCodeDescription = $object->responseCodeDescription;
113: }
114: return $this;
115: }
116: }
117: