1: <?php
2:
3: namespace SellerLabs\Snagshout\Model;
4:
5: class V1GetStatus
6: {
7: /**
8: * @var float
9: */
10: protected $connTime;
11: /**
12: * @var string
13: */
14: protected $version;
15: /**
16: * @var string
17: */
18: protected $status;
19: /**
20: * @var string
21: */
22: protected $timestamp;
23: /**
24: * @return float
25: */
26: public function getConnTime()
27: {
28: return $this->connTime;
29: }
30: /**
31: * @param float $connTime
32: *
33: * @return self
34: */
35: public function setConnTime($connTime = null)
36: {
37: $this->connTime = $connTime;
38: return $this;
39: }
40: /**
41: * @return string
42: */
43: public function getVersion()
44: {
45: return $this->version;
46: }
47: /**
48: * @param string $version
49: *
50: * @return self
51: */
52: public function setVersion($version = null)
53: {
54: $this->version = $version;
55: return $this;
56: }
57: /**
58: * @return string
59: */
60: public function getStatus()
61: {
62: return $this->status;
63: }
64: /**
65: * @param string $status
66: *
67: * @return self
68: */
69: public function setStatus($status = null)
70: {
71: $this->status = $status;
72: return $this;
73: }
74: /**
75: * @return string
76: */
77: public function getTimestamp()
78: {
79: return $this->timestamp;
80: }
81: /**
82: * @param string $timestamp
83: *
84: * @return self
85: */
86: public function setTimestamp($timestamp = null)
87: {
88: $this->timestamp = $timestamp;
89: return $this;
90: }
91: }