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 GeoCoordinates extends DataObject
14: {
15: /**
16: * @var float|null
17: */
18: public ?float $latitude = null;
19:
20: /**
21: * @var float|null
22: */
23: public ?float $longitude = null;
24:
25: /**
26: * @return object
27: */
28: public function toObject(): object
29: {
30: $object = parent::toObject();
31: if (!is_null($this->latitude)) {
32: $object->latitude = $this->latitude;
33: }
34: if (!is_null($this->longitude)) {
35: $object->longitude = $this->longitude;
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): GeoCoordinates
47: {
48: parent::fromObject($object);
49: if (property_exists($object, 'latitude')) {
50: $this->latitude = $object->latitude;
51: }
52: if (property_exists($object, 'longitude')) {
53: $this->longitude = $object->longitude;
54: }
55: return $this;
56: }
57: }
58: