1 | <?php |
||
17 | class TimeZoneResponse |
||
18 | { |
||
19 | /** |
||
20 | * @var string|null |
||
21 | */ |
||
22 | private $status; |
||
23 | |||
24 | /** |
||
25 | * @var int|null |
||
26 | */ |
||
27 | private $dstOffset; |
||
28 | |||
29 | /** |
||
30 | * @var int|null |
||
31 | */ |
||
32 | private $rawOffset; |
||
33 | |||
34 | /** |
||
35 | * @var string|null |
||
36 | */ |
||
37 | private $timeZoneId; |
||
38 | |||
39 | /** |
||
40 | * @var string|null |
||
41 | */ |
||
42 | private $timeZoneName; |
||
43 | |||
44 | /** |
||
45 | * @return bool |
||
46 | */ |
||
47 | public function hasStatus() |
||
51 | |||
52 | /** |
||
53 | * @return string|null |
||
54 | */ |
||
55 | public function getStatus() |
||
59 | |||
60 | /** |
||
61 | * @param string|null $status |
||
62 | */ |
||
63 | public function setStatus($status) |
||
67 | |||
68 | /** |
||
69 | * @return bool |
||
70 | */ |
||
71 | public function hasDstOffset() |
||
75 | |||
76 | /** |
||
77 | * @return int|null |
||
78 | */ |
||
79 | public function getDstOffset() |
||
83 | |||
84 | /** |
||
85 | * @param int|null $dstOffset |
||
86 | */ |
||
87 | public function setDstOffset($dstOffset) |
||
91 | |||
92 | /** |
||
93 | * @return bool |
||
94 | */ |
||
95 | public function hasRawOffset() |
||
99 | |||
100 | /** |
||
101 | * @return int|null |
||
102 | */ |
||
103 | public function getRawOffset() |
||
107 | |||
108 | /** |
||
109 | * @param int|null $rawOffset |
||
110 | */ |
||
111 | public function setRawOffset($rawOffset) |
||
115 | |||
116 | /** |
||
117 | * @return bool |
||
118 | */ |
||
119 | public function hasTimeZoneId() |
||
123 | |||
124 | /** |
||
125 | * @return string|null |
||
126 | */ |
||
127 | public function getTimeZoneId() |
||
131 | |||
132 | /** |
||
133 | * @param string|null $timeZoneId |
||
134 | */ |
||
135 | public function setTimeZoneId($timeZoneId) |
||
139 | |||
140 | /** |
||
141 | * @return bool |
||
142 | */ |
||
143 | public function hasTimeZoneName() |
||
147 | |||
148 | /** |
||
149 | * @return string|null |
||
150 | */ |
||
151 | public function getTimeZoneName() |
||
155 | |||
156 | /** |
||
157 | * @param string|null $timeZoneName |
||
158 | */ |
||
159 | public function setTimeZoneName($timeZoneName) |
||
163 | } |
||
164 |