1: <?php
2: /*
3: * This file was automatically generated.
4: */
5: namespace Worldline\Acquiring\Sdk\V1\Domain;
6:
7: use UnexpectedValueException;
8: use Worldline\Acquiring\Sdk\Domain\DataObject;
9:
10: /**
11: * @package Worldline\Acquiring\Sdk\V1\Domain
12: */
13: class PointOfSaleDataForDcc extends DataObject
14: {
15: /**
16: * @var string
17: */
18: public $terminalCountryCode = null;
19:
20: /**
21: * @var string
22: */
23: public $terminalId = null;
24:
25: /**
26: * @return object
27: */
28: public function toObject()
29: {
30: $object = parent::toObject();
31: if (!is_null($this->terminalCountryCode)) {
32: $object->terminalCountryCode = $this->terminalCountryCode;
33: }
34: if (!is_null($this->terminalId)) {
35: $object->terminalId = $this->terminalId;
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, 'terminalCountryCode')) {
49: $this->terminalCountryCode = $object->terminalCountryCode;
50: }
51: if (property_exists($object, 'terminalId')) {
52: $this->terminalId = $object->terminalId;
53: }
54: return $this;
55: }
56: }
57: