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 CreateMandateResponse extends DataObject
15: {
16: /**
17: * @var MandateResponse|null
18: */
19: public ?MandateResponse $mandate = null;
20:
21: /**
22: * @var MandateMerchantAction|null
23: */
24: public ?MandateMerchantAction $merchantAction = null;
25:
26: /**
27: * @return object
28: */
29: public function toObject(): object
30: {
31: $object = parent::toObject();
32: if (!is_null($this->mandate)) {
33: $object->mandate = $this->mandate->toObject();
34: }
35: if (!is_null($this->merchantAction)) {
36: $object->merchantAction = $this->merchantAction->toObject();
37: }
38: return $object;
39: }
40:
41: /**
42: * @param object $object
43: *
44: * @return $this
45: * @throws UnexpectedValueException
46: */
47: public function fromObject(object $object): CreateMandateResponse
48: {
49: parent::fromObject($object);
50: if (property_exists($object, 'mandate')) {
51: if (!is_object($object->mandate)) {
52: throw new UnexpectedValueException('value \'' . print_r($object->mandate, true) . '\' is not an object');
53: }
54: $value = new MandateResponse();
55: $this->mandate = $value->fromObject($object->mandate);
56: }
57: if (property_exists($object, 'merchantAction')) {
58: if (!is_object($object->merchantAction)) {
59: throw new UnexpectedValueException('value \'' . print_r($object->merchantAction, true) . '\' is not an object');
60: }
61: $value = new MandateMerchantAction();
62: $this->merchantAction = $value->fromObject($object->merchantAction);
63: }
64: return $this;
65: }
66: }
67: