1: | <?php |
2: | |
3: | |
4: | |
5: | namespace Worldline\Acquiring\Sdk\V1\Domain; |
6: | |
7: | use UnexpectedValueException; |
8: | use Worldline\Acquiring\Sdk\Domain\DataObject; |
9: | |
10: | |
11: | |
12: | |
13: | class NetworkTokenData extends DataObject |
14: | { |
15: | |
16: | |
17: | |
18: | public $cryptogram = null; |
19: | |
20: | |
21: | |
22: | |
23: | public $eci = null; |
24: | |
25: | |
26: | |
27: | |
28: | public function toObject() |
29: | { |
30: | $object = parent::toObject(); |
31: | if (!is_null($this->cryptogram)) { |
32: | $object->cryptogram = $this->cryptogram; |
33: | } |
34: | if (!is_null($this->eci)) { |
35: | $object->eci = $this->eci; |
36: | } |
37: | return $object; |
38: | } |
39: | |
40: | |
41: | |
42: | |
43: | |
44: | |
45: | public function fromObject($object) |
46: | { |
47: | parent::fromObject($object); |
48: | if (property_exists($object, 'cryptogram')) { |
49: | $this->cryptogram = $object->cryptogram; |
50: | } |
51: | if (property_exists($object, 'eci')) { |
52: | $this->eci = $object->eci; |
53: | } |
54: | return $this; |
55: | } |
56: | } |
57: | |