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