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