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