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 CompletePaymentRequest extends DataObject
15: {
16: /**
17: * @var CompletePaymentCardPaymentMethodSpecificInput
18: */
19: public $cardPaymentMethodSpecificInput = null;
20:
21: /**
22: * @var Merchant
23: */
24: public $merchant = null;
25:
26: /**
27: * @var Order
28: */
29: public $order = null;
30:
31: /**
32: * @return object
33: */
34: public function toObject()
35: {
36: $object = parent::toObject();
37: if (!is_null($this->cardPaymentMethodSpecificInput)) {
38: $object->cardPaymentMethodSpecificInput = $this->cardPaymentMethodSpecificInput->toObject();
39: }
40: if (!is_null($this->merchant)) {
41: $object->merchant = $this->merchant->toObject();
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: * @return $this
52: * @throws UnexpectedValueException
53: */
54: public function fromObject($object)
55: {
56: parent::fromObject($object);
57: if (property_exists($object, 'cardPaymentMethodSpecificInput')) {
58: if (!is_object($object->cardPaymentMethodSpecificInput)) {
59: throw new UnexpectedValueException('value \'' . print_r($object->cardPaymentMethodSpecificInput, true) . '\' is not an object');
60: }
61: $value = new CompletePaymentCardPaymentMethodSpecificInput();
62: $this->cardPaymentMethodSpecificInput = $value->fromObject($object->cardPaymentMethodSpecificInput);
63: }
64: if (property_exists($object, 'merchant')) {
65: if (!is_object($object->merchant)) {
66: throw new UnexpectedValueException('value \'' . print_r($object->merchant, true) . '\' is not an object');
67: }
68: $value = new Merchant();
69: $this->merchant = $value->fromObject($object->merchant);
70: }
71: if (property_exists($object, 'order')) {
72: if (!is_object($object->order)) {
73: throw new UnexpectedValueException('value \'' . print_r($object->order, true) . '\' is not an object');
74: }
75: $value = new Order();
76: $this->order = $value->fromObject($object->order);
77: }
78: return $this;
79: }
80: }
81: