1: <?php
2: /*
3: * This file was automatically generated.
4: */
5: namespace Worldline\Acquiring\Sdk\V1\Domain;
6:
7: use UnexpectedValueException;
8: use Worldline\Acquiring\Sdk\Domain\DataObject;
9:
10: /**
11: * @package Worldline\Acquiring\Sdk\V1\Domain
12: */
13: class PointOfSaleDataForResponse extends DataObject
14: {
15: /**
16: * @var EmvDataItem[]
17: */
18: public $emvData = null;
19:
20: /**
21: * @var string
22: */
23: public $panLast4Digits = null;
24:
25: /**
26: * @var int
27: */
28: public $pinRetryCounter = null;
29:
30: /**
31: * @return object
32: */
33: public function toObject()
34: {
35: $object = parent::toObject();
36: if (!is_null($this->emvData)) {
37: $object->emvData = [];
38: foreach ($this->emvData as $element) {
39: if (!is_null($element)) {
40: $object->emvData[] = $element->toObject();
41: }
42: }
43: }
44: if (!is_null($this->panLast4Digits)) {
45: $object->panLast4Digits = $this->panLast4Digits;
46: }
47: if (!is_null($this->pinRetryCounter)) {
48: $object->pinRetryCounter = $this->pinRetryCounter;
49: }
50: return $object;
51: }
52:
53: /**
54: * @param object $object
55: * @return $this
56: * @throws UnexpectedValueException
57: */
58: public function fromObject($object)
59: {
60: parent::fromObject($object);
61: if (property_exists($object, 'emvData')) {
62: if (!is_array($object->emvData) && !is_object($object->emvData)) {
63: throw new UnexpectedValueException('value \'' . print_r($object->emvData, true) . '\' is not an array or object');
64: }
65: $this->emvData = [];
66: foreach ($object->emvData as $element) {
67: $value = new EmvDataItem();
68: $this->emvData[] = $value->fromObject($element);
69: }
70: }
71: if (property_exists($object, 'panLast4Digits')) {
72: $this->panLast4Digits = $object->panLast4Digits;
73: }
74: if (property_exists($object, 'pinRetryCounter')) {
75: $this->pinRetryCounter = $object->pinRetryCounter;
76: }
77: return $this;
78: }
79: }
80: