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 MobilePaymentProduct320SpecificInput extends DataObject
15: {
16: /**
17: * @var string
18: */
19: public $cardholderName = null;
20:
21: /**
22: * @var GPayThreeDSecure
23: */
24: public $threeDSecure = null;
25:
26: /**
27: * @return object
28: */
29: public function toObject()
30: {
31: $object = parent::toObject();
32: if (!is_null($this->cardholderName)) {
33: $object->cardholderName = $this->cardholderName;
34: }
35: if (!is_null($this->threeDSecure)) {
36: $object->threeDSecure = $this->threeDSecure->toObject();
37: }
38: return $object;
39: }
40:
41: /**
42: * @param object $object
43: * @return $this
44: * @throws UnexpectedValueException
45: */
46: public function fromObject($object)
47: {
48: parent::fromObject($object);
49: if (property_exists($object, 'cardholderName')) {
50: $this->cardholderName = $object->cardholderName;
51: }
52: if (property_exists($object, 'threeDSecure')) {
53: if (!is_object($object->threeDSecure)) {
54: throw new UnexpectedValueException('value \'' . print_r($object->threeDSecure, true) . '\' is not an object');
55: }
56: $value = new GPayThreeDSecure();
57: $this->threeDSecure = $value->fromObject($object->threeDSecure);
58: }
59: return $this;
60: }
61: }
62: