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