1: <?php
2: /*
3: * This class was auto-generated from the API references found at
4: * https://apireference.connect.worldline-solutions.com/
5: */
6: namespace Worldline\Connect\Sdk\V1\Domain;
7:
8: use UnexpectedValueException;
9: use Worldline\Connect\Sdk\Domain\DataObject;
10:
11: /**
12: * @package Worldline\Connect\Sdk\V1\Domain
13: */
14: class CapturePaymentRequest extends DataObject
15: {
16: /**
17: * @var int|null
18: */
19: public ?int $amount = null;
20:
21: /**
22: * @var bool|null
23: */
24: public ?bool $isFinal = null;
25:
26: /**
27: * @var CapturePaymentOrder|null
28: */
29: public ?CapturePaymentOrder $order = null;
30:
31: /**
32: * @return object
33: */
34: public function toObject(): object
35: {
36: $object = parent::toObject();
37: if (!is_null($this->amount)) {
38: $object->amount = $this->amount;
39: }
40: if (!is_null($this->isFinal)) {
41: $object->isFinal = $this->isFinal;
42: }
43: if (!is_null($this->order)) {
44: $object->order = $this->order->toObject();
45: }
46: return $object;
47: }
48:
49: /**
50: * @param object $object
51: *
52: * @return $this
53: * @throws UnexpectedValueException
54: */
55: public function fromObject(object $object): CapturePaymentRequest
56: {
57: parent::fromObject($object);
58: if (property_exists($object, 'amount')) {
59: $this->amount = $object->amount;
60: }
61: if (property_exists($object, 'isFinal')) {
62: $this->isFinal = $object->isFinal;
63: }
64: if (property_exists($object, 'order')) {
65: if (!is_object($object->order)) {
66: throw new UnexpectedValueException('value \'' . print_r($object->order, true) . '\' is not an object');
67: }
68: $value = new CapturePaymentOrder();
69: $this->order = $value->fromObject($object->order);
70: }
71: return $this;
72: }
73: }
74: