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 NonSepaDirectDebitPaymentProduct705SpecificInput extends DataObject
15: {
16: /**
17: * @var string|null
18: */
19: public ?string $authorisationId = null;
20:
21: /**
22: * @var BankAccountBban|null
23: */
24: public ?BankAccountBban $bankAccountBban = null;
25:
26: /**
27: * @var string|null
28: */
29: public ?string $transactionType = null;
30:
31: /**
32: * @return object
33: */
34: public function toObject(): object
35: {
36: $object = parent::toObject();
37: if (!is_null($this->authorisationId)) {
38: $object->authorisationId = $this->authorisationId;
39: }
40: if (!is_null($this->bankAccountBban)) {
41: $object->bankAccountBban = $this->bankAccountBban->toObject();
42: }
43: if (!is_null($this->transactionType)) {
44: $object->transactionType = $this->transactionType;
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): NonSepaDirectDebitPaymentProduct705SpecificInput
56: {
57: parent::fromObject($object);
58: if (property_exists($object, 'authorisationId')) {
59: $this->authorisationId = $object->authorisationId;
60: }
61: if (property_exists($object, 'bankAccountBban')) {
62: if (!is_object($object->bankAccountBban)) {
63: throw new UnexpectedValueException('value \'' . print_r($object->bankAccountBban, true) . '\' is not an object');
64: }
65: $value = new BankAccountBban();
66: $this->bankAccountBban = $value->fromObject($object->bankAccountBban);
67: }
68: if (property_exists($object, 'transactionType')) {
69: $this->transactionType = $object->transactionType;
70: }
71: return $this;
72: }
73: }
74: