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