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 Card extends CardWithoutCvv
14: {
15: /**
16: * @var string
17: */
18: public $cvv = null;
19:
20: /**
21: * @var string
22: */
23: public $partialPin = null;
24:
25: /**
26: * @return object
27: */
28: public function toObject()
29: {
30: $object = parent::toObject();
31: if (!is_null($this->cvv)) {
32: $object->cvv = $this->cvv;
33: }
34: if (!is_null($this->partialPin)) {
35: $object->partialPin = $this->partialPin;
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, 'cvv')) {
49: $this->cvv = $object->cvv;
50: }
51: if (property_exists($object, 'partialPin')) {
52: $this->partialPin = $object->partialPin;
53: }
54: return $this;
55: }
56: }
57: