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