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 AbstractPayoutMethodSpecificInput extends DataObject |
15: | { |
16: | /** |
17: | * @return object |
18: | */ |
19: | public function toObject() |
20: | { |
21: | $object = parent::toObject(); |
22: | return $object; |
23: | } |
24: | |
25: | /** |
26: | * @param object $object |
27: | * @return $this |
28: | * @throws UnexpectedValueException |
29: | */ |
30: | public function fromObject($object) |
31: | { |
32: | parent::fromObject($object); |
33: | return $this; |
34: | } |
35: | } |
36: |