source: vendor/google/apiclient-services/src/MyBusinessLodging/GuestUnitFeatures.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 7.5 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\MyBusinessLodging;
19
20class GuestUnitFeatures extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $bungalowOrVilla;
26 /**
27 * @var string
28 */
29 public $bungalowOrVillaException;
30 /**
31 * @var bool
32 */
33 public $connectingUnitAvailable;
34 /**
35 * @var string
36 */
37 public $connectingUnitAvailableException;
38 /**
39 * @var bool
40 */
41 public $executiveFloor;
42 /**
43 * @var string
44 */
45 public $executiveFloorException;
46 /**
47 * @var int
48 */
49 public $maxAdultOccupantsCount;
50 /**
51 * @var string
52 */
53 public $maxAdultOccupantsCountException;
54 /**
55 * @var int
56 */
57 public $maxChildOccupantsCount;
58 /**
59 * @var string
60 */
61 public $maxChildOccupantsCountException;
62 /**
63 * @var int
64 */
65 public $maxOccupantsCount;
66 /**
67 * @var string
68 */
69 public $maxOccupantsCountException;
70 /**
71 * @var bool
72 */
73 public $privateHome;
74 /**
75 * @var string
76 */
77 public $privateHomeException;
78 /**
79 * @var bool
80 */
81 public $suite;
82 /**
83 * @var string
84 */
85 public $suiteException;
86 /**
87 * @var string
88 */
89 public $tier;
90 /**
91 * @var string
92 */
93 public $tierException;
94 protected $totalLivingAreasType = LivingArea::class;
95 protected $totalLivingAreasDataType = '';
96 protected $viewsType = ViewsFromUnit::class;
97 protected $viewsDataType = '';
98
99 /**
100 * @param bool
101 */
102 public function setBungalowOrVilla($bungalowOrVilla)
103 {
104 $this->bungalowOrVilla = $bungalowOrVilla;
105 }
106 /**
107 * @return bool
108 */
109 public function getBungalowOrVilla()
110 {
111 return $this->bungalowOrVilla;
112 }
113 /**
114 * @param string
115 */
116 public function setBungalowOrVillaException($bungalowOrVillaException)
117 {
118 $this->bungalowOrVillaException = $bungalowOrVillaException;
119 }
120 /**
121 * @return string
122 */
123 public function getBungalowOrVillaException()
124 {
125 return $this->bungalowOrVillaException;
126 }
127 /**
128 * @param bool
129 */
130 public function setConnectingUnitAvailable($connectingUnitAvailable)
131 {
132 $this->connectingUnitAvailable = $connectingUnitAvailable;
133 }
134 /**
135 * @return bool
136 */
137 public function getConnectingUnitAvailable()
138 {
139 return $this->connectingUnitAvailable;
140 }
141 /**
142 * @param string
143 */
144 public function setConnectingUnitAvailableException($connectingUnitAvailableException)
145 {
146 $this->connectingUnitAvailableException = $connectingUnitAvailableException;
147 }
148 /**
149 * @return string
150 */
151 public function getConnectingUnitAvailableException()
152 {
153 return $this->connectingUnitAvailableException;
154 }
155 /**
156 * @param bool
157 */
158 public function setExecutiveFloor($executiveFloor)
159 {
160 $this->executiveFloor = $executiveFloor;
161 }
162 /**
163 * @return bool
164 */
165 public function getExecutiveFloor()
166 {
167 return $this->executiveFloor;
168 }
169 /**
170 * @param string
171 */
172 public function setExecutiveFloorException($executiveFloorException)
173 {
174 $this->executiveFloorException = $executiveFloorException;
175 }
176 /**
177 * @return string
178 */
179 public function getExecutiveFloorException()
180 {
181 return $this->executiveFloorException;
182 }
183 /**
184 * @param int
185 */
186 public function setMaxAdultOccupantsCount($maxAdultOccupantsCount)
187 {
188 $this->maxAdultOccupantsCount = $maxAdultOccupantsCount;
189 }
190 /**
191 * @return int
192 */
193 public function getMaxAdultOccupantsCount()
194 {
195 return $this->maxAdultOccupantsCount;
196 }
197 /**
198 * @param string
199 */
200 public function setMaxAdultOccupantsCountException($maxAdultOccupantsCountException)
201 {
202 $this->maxAdultOccupantsCountException = $maxAdultOccupantsCountException;
203 }
204 /**
205 * @return string
206 */
207 public function getMaxAdultOccupantsCountException()
208 {
209 return $this->maxAdultOccupantsCountException;
210 }
211 /**
212 * @param int
213 */
214 public function setMaxChildOccupantsCount($maxChildOccupantsCount)
215 {
216 $this->maxChildOccupantsCount = $maxChildOccupantsCount;
217 }
218 /**
219 * @return int
220 */
221 public function getMaxChildOccupantsCount()
222 {
223 return $this->maxChildOccupantsCount;
224 }
225 /**
226 * @param string
227 */
228 public function setMaxChildOccupantsCountException($maxChildOccupantsCountException)
229 {
230 $this->maxChildOccupantsCountException = $maxChildOccupantsCountException;
231 }
232 /**
233 * @return string
234 */
235 public function getMaxChildOccupantsCountException()
236 {
237 return $this->maxChildOccupantsCountException;
238 }
239 /**
240 * @param int
241 */
242 public function setMaxOccupantsCount($maxOccupantsCount)
243 {
244 $this->maxOccupantsCount = $maxOccupantsCount;
245 }
246 /**
247 * @return int
248 */
249 public function getMaxOccupantsCount()
250 {
251 return $this->maxOccupantsCount;
252 }
253 /**
254 * @param string
255 */
256 public function setMaxOccupantsCountException($maxOccupantsCountException)
257 {
258 $this->maxOccupantsCountException = $maxOccupantsCountException;
259 }
260 /**
261 * @return string
262 */
263 public function getMaxOccupantsCountException()
264 {
265 return $this->maxOccupantsCountException;
266 }
267 /**
268 * @param bool
269 */
270 public function setPrivateHome($privateHome)
271 {
272 $this->privateHome = $privateHome;
273 }
274 /**
275 * @return bool
276 */
277 public function getPrivateHome()
278 {
279 return $this->privateHome;
280 }
281 /**
282 * @param string
283 */
284 public function setPrivateHomeException($privateHomeException)
285 {
286 $this->privateHomeException = $privateHomeException;
287 }
288 /**
289 * @return string
290 */
291 public function getPrivateHomeException()
292 {
293 return $this->privateHomeException;
294 }
295 /**
296 * @param bool
297 */
298 public function setSuite($suite)
299 {
300 $this->suite = $suite;
301 }
302 /**
303 * @return bool
304 */
305 public function getSuite()
306 {
307 return $this->suite;
308 }
309 /**
310 * @param string
311 */
312 public function setSuiteException($suiteException)
313 {
314 $this->suiteException = $suiteException;
315 }
316 /**
317 * @return string
318 */
319 public function getSuiteException()
320 {
321 return $this->suiteException;
322 }
323 /**
324 * @param string
325 */
326 public function setTier($tier)
327 {
328 $this->tier = $tier;
329 }
330 /**
331 * @return string
332 */
333 public function getTier()
334 {
335 return $this->tier;
336 }
337 /**
338 * @param string
339 */
340 public function setTierException($tierException)
341 {
342 $this->tierException = $tierException;
343 }
344 /**
345 * @return string
346 */
347 public function getTierException()
348 {
349 return $this->tierException;
350 }
351 /**
352 * @param LivingArea
353 */
354 public function setTotalLivingAreas(LivingArea $totalLivingAreas)
355 {
356 $this->totalLivingAreas = $totalLivingAreas;
357 }
358 /**
359 * @return LivingArea
360 */
361 public function getTotalLivingAreas()
362 {
363 return $this->totalLivingAreas;
364 }
365 /**
366 * @param ViewsFromUnit
367 */
368 public function setViews(ViewsFromUnit $views)
369 {
370 $this->views = $views;
371 }
372 /**
373 * @return ViewsFromUnit
374 */
375 public function getViews()
376 {
377 return $this->views;
378 }
379}
380
381// Adding a class alias for backwards compatibility with the previous class name.
382class_alias(GuestUnitFeatures::class, 'Google_Service_MyBusinessLodging_GuestUnitFeatures');
Note: See TracBrowser for help on using the repository browser.