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