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 TokenCard extends AbstractToken
14: {
15: /**
16: * @var CustomerToken
17: */
18: public $customer = null;
19:
20: /**
21: * @var TokenCardData
22: */
23: public $data = null;
24:
25: /**
26: * @return object
27: */
28: public function toObject()
29: {
30: $object = parent::toObject();
31: if (!is_null($this->customer)) {
32: $object->customer = $this->customer->toObject();
33: }
34: if (!is_null($this->data)) {
35: $object->data = $this->data->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, 'customer')) {
49: if (!is_object($object->customer)) {
50: throw new UnexpectedValueException('value \'' . print_r($object->customer, true) . '\' is not an object');
51: }
52: $value = new CustomerToken();
53: $this->customer = $value->fromObject($object->customer);
54: }
55: if (property_exists($object, 'data')) {
56: if (!is_object($object->data)) {
57: throw new UnexpectedValueException('value \'' . print_r($object->data, true) . '\' is not an object');
58: }
59: $value = new TokenCardData();
60: $this->data = $value->fromObject($object->data);
61: }
62: return $this;
63: }
64: }
65: