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 ValidationBankAccountCheck extends DataObject
15: {
16: /**
17: * @var string
18: */
19: public $code = null;
20:
21: /**
22: * @var string
23: */
24: public $description = null;
25:
26: /**
27: * @var string
28: */
29: public $result = null;
30:
31: /**
32: * @return object
33: */
34: public function toObject()
35: {
36: $object = parent::toObject();
37: if (!is_null($this->code)) {
38: $object->code = $this->code;
39: }
40: if (!is_null($this->description)) {
41: $object->description = $this->description;
42: }
43: if (!is_null($this->result)) {
44: $object->result = $this->result;
45: }
46: return $object;
47: }
48:
49: /**
50: * @param object $object
51: * @return $this
52: * @throws UnexpectedValueException
53: */
54: public function fromObject($object)
55: {
56: parent::fromObject($object);
57: if (property_exists($object, 'code')) {
58: $this->code = $object->code;
59: }
60: if (property_exists($object, 'description')) {
61: $this->description = $object->description;
62: }
63: if (property_exists($object, 'result')) {
64: $this->result = $object->result;
65: }
66: return $this;
67: }
68: }
69: