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 |
|
---|
18 | namespace Google\Service\MyBusinessLodging;
|
---|
19 |
|
---|
20 | class LivingAreaEating extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var bool
|
---|
24 | */
|
---|
25 | public $coffeeMaker;
|
---|
26 | /**
|
---|
27 | * @var string
|
---|
28 | */
|
---|
29 | public $coffeeMakerException;
|
---|
30 | /**
|
---|
31 | * @var bool
|
---|
32 | */
|
---|
33 | public $cookware;
|
---|
34 | /**
|
---|
35 | * @var string
|
---|
36 | */
|
---|
37 | public $cookwareException;
|
---|
38 | /**
|
---|
39 | * @var bool
|
---|
40 | */
|
---|
41 | public $dishwasher;
|
---|
42 | /**
|
---|
43 | * @var string
|
---|
44 | */
|
---|
45 | public $dishwasherException;
|
---|
46 | /**
|
---|
47 | * @var bool
|
---|
48 | */
|
---|
49 | public $indoorGrill;
|
---|
50 | /**
|
---|
51 | * @var string
|
---|
52 | */
|
---|
53 | public $indoorGrillException;
|
---|
54 | /**
|
---|
55 | * @var bool
|
---|
56 | */
|
---|
57 | public $kettle;
|
---|
58 | /**
|
---|
59 | * @var string
|
---|
60 | */
|
---|
61 | public $kettleException;
|
---|
62 | /**
|
---|
63 | * @var bool
|
---|
64 | */
|
---|
65 | public $kitchenAvailable;
|
---|
66 | /**
|
---|
67 | * @var string
|
---|
68 | */
|
---|
69 | public $kitchenAvailableException;
|
---|
70 | /**
|
---|
71 | * @var bool
|
---|
72 | */
|
---|
73 | public $microwave;
|
---|
74 | /**
|
---|
75 | * @var string
|
---|
76 | */
|
---|
77 | public $microwaveException;
|
---|
78 | /**
|
---|
79 | * @var bool
|
---|
80 | */
|
---|
81 | public $minibar;
|
---|
82 | /**
|
---|
83 | * @var string
|
---|
84 | */
|
---|
85 | public $minibarException;
|
---|
86 | /**
|
---|
87 | * @var bool
|
---|
88 | */
|
---|
89 | public $outdoorGrill;
|
---|
90 | /**
|
---|
91 | * @var string
|
---|
92 | */
|
---|
93 | public $outdoorGrillException;
|
---|
94 | /**
|
---|
95 | * @var bool
|
---|
96 | */
|
---|
97 | public $oven;
|
---|
98 | /**
|
---|
99 | * @var string
|
---|
100 | */
|
---|
101 | public $ovenException;
|
---|
102 | /**
|
---|
103 | * @var bool
|
---|
104 | */
|
---|
105 | public $refrigerator;
|
---|
106 | /**
|
---|
107 | * @var string
|
---|
108 | */
|
---|
109 | public $refrigeratorException;
|
---|
110 | /**
|
---|
111 | * @var bool
|
---|
112 | */
|
---|
113 | public $sink;
|
---|
114 | /**
|
---|
115 | * @var string
|
---|
116 | */
|
---|
117 | public $sinkException;
|
---|
118 | /**
|
---|
119 | * @var bool
|
---|
120 | */
|
---|
121 | public $snackbar;
|
---|
122 | /**
|
---|
123 | * @var string
|
---|
124 | */
|
---|
125 | public $snackbarException;
|
---|
126 | /**
|
---|
127 | * @var bool
|
---|
128 | */
|
---|
129 | public $stove;
|
---|
130 | /**
|
---|
131 | * @var string
|
---|
132 | */
|
---|
133 | public $stoveException;
|
---|
134 | /**
|
---|
135 | * @var bool
|
---|
136 | */
|
---|
137 | public $teaStation;
|
---|
138 | /**
|
---|
139 | * @var string
|
---|
140 | */
|
---|
141 | public $teaStationException;
|
---|
142 | /**
|
---|
143 | * @var bool
|
---|
144 | */
|
---|
145 | public $toaster;
|
---|
146 | /**
|
---|
147 | * @var string
|
---|
148 | */
|
---|
149 | public $toasterException;
|
---|
150 |
|
---|
151 | /**
|
---|
152 | * @param bool
|
---|
153 | */
|
---|
154 | public function setCoffeeMaker($coffeeMaker)
|
---|
155 | {
|
---|
156 | $this->coffeeMaker = $coffeeMaker;
|
---|
157 | }
|
---|
158 | /**
|
---|
159 | * @return bool
|
---|
160 | */
|
---|
161 | public function getCoffeeMaker()
|
---|
162 | {
|
---|
163 | return $this->coffeeMaker;
|
---|
164 | }
|
---|
165 | /**
|
---|
166 | * @param string
|
---|
167 | */
|
---|
168 | public function setCoffeeMakerException($coffeeMakerException)
|
---|
169 | {
|
---|
170 | $this->coffeeMakerException = $coffeeMakerException;
|
---|
171 | }
|
---|
172 | /**
|
---|
173 | * @return string
|
---|
174 | */
|
---|
175 | public function getCoffeeMakerException()
|
---|
176 | {
|
---|
177 | return $this->coffeeMakerException;
|
---|
178 | }
|
---|
179 | /**
|
---|
180 | * @param bool
|
---|
181 | */
|
---|
182 | public function setCookware($cookware)
|
---|
183 | {
|
---|
184 | $this->cookware = $cookware;
|
---|
185 | }
|
---|
186 | /**
|
---|
187 | * @return bool
|
---|
188 | */
|
---|
189 | public function getCookware()
|
---|
190 | {
|
---|
191 | return $this->cookware;
|
---|
192 | }
|
---|
193 | /**
|
---|
194 | * @param string
|
---|
195 | */
|
---|
196 | public function setCookwareException($cookwareException)
|
---|
197 | {
|
---|
198 | $this->cookwareException = $cookwareException;
|
---|
199 | }
|
---|
200 | /**
|
---|
201 | * @return string
|
---|
202 | */
|
---|
203 | public function getCookwareException()
|
---|
204 | {
|
---|
205 | return $this->cookwareException;
|
---|
206 | }
|
---|
207 | /**
|
---|
208 | * @param bool
|
---|
209 | */
|
---|
210 | public function setDishwasher($dishwasher)
|
---|
211 | {
|
---|
212 | $this->dishwasher = $dishwasher;
|
---|
213 | }
|
---|
214 | /**
|
---|
215 | * @return bool
|
---|
216 | */
|
---|
217 | public function getDishwasher()
|
---|
218 | {
|
---|
219 | return $this->dishwasher;
|
---|
220 | }
|
---|
221 | /**
|
---|
222 | * @param string
|
---|
223 | */
|
---|
224 | public function setDishwasherException($dishwasherException)
|
---|
225 | {
|
---|
226 | $this->dishwasherException = $dishwasherException;
|
---|
227 | }
|
---|
228 | /**
|
---|
229 | * @return string
|
---|
230 | */
|
---|
231 | public function getDishwasherException()
|
---|
232 | {
|
---|
233 | return $this->dishwasherException;
|
---|
234 | }
|
---|
235 | /**
|
---|
236 | * @param bool
|
---|
237 | */
|
---|
238 | public function setIndoorGrill($indoorGrill)
|
---|
239 | {
|
---|
240 | $this->indoorGrill = $indoorGrill;
|
---|
241 | }
|
---|
242 | /**
|
---|
243 | * @return bool
|
---|
244 | */
|
---|
245 | public function getIndoorGrill()
|
---|
246 | {
|
---|
247 | return $this->indoorGrill;
|
---|
248 | }
|
---|
249 | /**
|
---|
250 | * @param string
|
---|
251 | */
|
---|
252 | public function setIndoorGrillException($indoorGrillException)
|
---|
253 | {
|
---|
254 | $this->indoorGrillException = $indoorGrillException;
|
---|
255 | }
|
---|
256 | /**
|
---|
257 | * @return string
|
---|
258 | */
|
---|
259 | public function getIndoorGrillException()
|
---|
260 | {
|
---|
261 | return $this->indoorGrillException;
|
---|
262 | }
|
---|
263 | /**
|
---|
264 | * @param bool
|
---|
265 | */
|
---|
266 | public function setKettle($kettle)
|
---|
267 | {
|
---|
268 | $this->kettle = $kettle;
|
---|
269 | }
|
---|
270 | /**
|
---|
271 | * @return bool
|
---|
272 | */
|
---|
273 | public function getKettle()
|
---|
274 | {
|
---|
275 | return $this->kettle;
|
---|
276 | }
|
---|
277 | /**
|
---|
278 | * @param string
|
---|
279 | */
|
---|
280 | public function setKettleException($kettleException)
|
---|
281 | {
|
---|
282 | $this->kettleException = $kettleException;
|
---|
283 | }
|
---|
284 | /**
|
---|
285 | * @return string
|
---|
286 | */
|
---|
287 | public function getKettleException()
|
---|
288 | {
|
---|
289 | return $this->kettleException;
|
---|
290 | }
|
---|
291 | /**
|
---|
292 | * @param bool
|
---|
293 | */
|
---|
294 | public function setKitchenAvailable($kitchenAvailable)
|
---|
295 | {
|
---|
296 | $this->kitchenAvailable = $kitchenAvailable;
|
---|
297 | }
|
---|
298 | /**
|
---|
299 | * @return bool
|
---|
300 | */
|
---|
301 | public function getKitchenAvailable()
|
---|
302 | {
|
---|
303 | return $this->kitchenAvailable;
|
---|
304 | }
|
---|
305 | /**
|
---|
306 | * @param string
|
---|
307 | */
|
---|
308 | public function setKitchenAvailableException($kitchenAvailableException)
|
---|
309 | {
|
---|
310 | $this->kitchenAvailableException = $kitchenAvailableException;
|
---|
311 | }
|
---|
312 | /**
|
---|
313 | * @return string
|
---|
314 | */
|
---|
315 | public function getKitchenAvailableException()
|
---|
316 | {
|
---|
317 | return $this->kitchenAvailableException;
|
---|
318 | }
|
---|
319 | /**
|
---|
320 | * @param bool
|
---|
321 | */
|
---|
322 | public function setMicrowave($microwave)
|
---|
323 | {
|
---|
324 | $this->microwave = $microwave;
|
---|
325 | }
|
---|
326 | /**
|
---|
327 | * @return bool
|
---|
328 | */
|
---|
329 | public function getMicrowave()
|
---|
330 | {
|
---|
331 | return $this->microwave;
|
---|
332 | }
|
---|
333 | /**
|
---|
334 | * @param string
|
---|
335 | */
|
---|
336 | public function setMicrowaveException($microwaveException)
|
---|
337 | {
|
---|
338 | $this->microwaveException = $microwaveException;
|
---|
339 | }
|
---|
340 | /**
|
---|
341 | * @return string
|
---|
342 | */
|
---|
343 | public function getMicrowaveException()
|
---|
344 | {
|
---|
345 | return $this->microwaveException;
|
---|
346 | }
|
---|
347 | /**
|
---|
348 | * @param bool
|
---|
349 | */
|
---|
350 | public function setMinibar($minibar)
|
---|
351 | {
|
---|
352 | $this->minibar = $minibar;
|
---|
353 | }
|
---|
354 | /**
|
---|
355 | * @return bool
|
---|
356 | */
|
---|
357 | public function getMinibar()
|
---|
358 | {
|
---|
359 | return $this->minibar;
|
---|
360 | }
|
---|
361 | /**
|
---|
362 | * @param string
|
---|
363 | */
|
---|
364 | public function setMinibarException($minibarException)
|
---|
365 | {
|
---|
366 | $this->minibarException = $minibarException;
|
---|
367 | }
|
---|
368 | /**
|
---|
369 | * @return string
|
---|
370 | */
|
---|
371 | public function getMinibarException()
|
---|
372 | {
|
---|
373 | return $this->minibarException;
|
---|
374 | }
|
---|
375 | /**
|
---|
376 | * @param bool
|
---|
377 | */
|
---|
378 | public function setOutdoorGrill($outdoorGrill)
|
---|
379 | {
|
---|
380 | $this->outdoorGrill = $outdoorGrill;
|
---|
381 | }
|
---|
382 | /**
|
---|
383 | * @return bool
|
---|
384 | */
|
---|
385 | public function getOutdoorGrill()
|
---|
386 | {
|
---|
387 | return $this->outdoorGrill;
|
---|
388 | }
|
---|
389 | /**
|
---|
390 | * @param string
|
---|
391 | */
|
---|
392 | public function setOutdoorGrillException($outdoorGrillException)
|
---|
393 | {
|
---|
394 | $this->outdoorGrillException = $outdoorGrillException;
|
---|
395 | }
|
---|
396 | /**
|
---|
397 | * @return string
|
---|
398 | */
|
---|
399 | public function getOutdoorGrillException()
|
---|
400 | {
|
---|
401 | return $this->outdoorGrillException;
|
---|
402 | }
|
---|
403 | /**
|
---|
404 | * @param bool
|
---|
405 | */
|
---|
406 | public function setOven($oven)
|
---|
407 | {
|
---|
408 | $this->oven = $oven;
|
---|
409 | }
|
---|
410 | /**
|
---|
411 | * @return bool
|
---|
412 | */
|
---|
413 | public function getOven()
|
---|
414 | {
|
---|
415 | return $this->oven;
|
---|
416 | }
|
---|
417 | /**
|
---|
418 | * @param string
|
---|
419 | */
|
---|
420 | public function setOvenException($ovenException)
|
---|
421 | {
|
---|
422 | $this->ovenException = $ovenException;
|
---|
423 | }
|
---|
424 | /**
|
---|
425 | * @return string
|
---|
426 | */
|
---|
427 | public function getOvenException()
|
---|
428 | {
|
---|
429 | return $this->ovenException;
|
---|
430 | }
|
---|
431 | /**
|
---|
432 | * @param bool
|
---|
433 | */
|
---|
434 | public function setRefrigerator($refrigerator)
|
---|
435 | {
|
---|
436 | $this->refrigerator = $refrigerator;
|
---|
437 | }
|
---|
438 | /**
|
---|
439 | * @return bool
|
---|
440 | */
|
---|
441 | public function getRefrigerator()
|
---|
442 | {
|
---|
443 | return $this->refrigerator;
|
---|
444 | }
|
---|
445 | /**
|
---|
446 | * @param string
|
---|
447 | */
|
---|
448 | public function setRefrigeratorException($refrigeratorException)
|
---|
449 | {
|
---|
450 | $this->refrigeratorException = $refrigeratorException;
|
---|
451 | }
|
---|
452 | /**
|
---|
453 | * @return string
|
---|
454 | */
|
---|
455 | public function getRefrigeratorException()
|
---|
456 | {
|
---|
457 | return $this->refrigeratorException;
|
---|
458 | }
|
---|
459 | /**
|
---|
460 | * @param bool
|
---|
461 | */
|
---|
462 | public function setSink($sink)
|
---|
463 | {
|
---|
464 | $this->sink = $sink;
|
---|
465 | }
|
---|
466 | /**
|
---|
467 | * @return bool
|
---|
468 | */
|
---|
469 | public function getSink()
|
---|
470 | {
|
---|
471 | return $this->sink;
|
---|
472 | }
|
---|
473 | /**
|
---|
474 | * @param string
|
---|
475 | */
|
---|
476 | public function setSinkException($sinkException)
|
---|
477 | {
|
---|
478 | $this->sinkException = $sinkException;
|
---|
479 | }
|
---|
480 | /**
|
---|
481 | * @return string
|
---|
482 | */
|
---|
483 | public function getSinkException()
|
---|
484 | {
|
---|
485 | return $this->sinkException;
|
---|
486 | }
|
---|
487 | /**
|
---|
488 | * @param bool
|
---|
489 | */
|
---|
490 | public function setSnackbar($snackbar)
|
---|
491 | {
|
---|
492 | $this->snackbar = $snackbar;
|
---|
493 | }
|
---|
494 | /**
|
---|
495 | * @return bool
|
---|
496 | */
|
---|
497 | public function getSnackbar()
|
---|
498 | {
|
---|
499 | return $this->snackbar;
|
---|
500 | }
|
---|
501 | /**
|
---|
502 | * @param string
|
---|
503 | */
|
---|
504 | public function setSnackbarException($snackbarException)
|
---|
505 | {
|
---|
506 | $this->snackbarException = $snackbarException;
|
---|
507 | }
|
---|
508 | /**
|
---|
509 | * @return string
|
---|
510 | */
|
---|
511 | public function getSnackbarException()
|
---|
512 | {
|
---|
513 | return $this->snackbarException;
|
---|
514 | }
|
---|
515 | /**
|
---|
516 | * @param bool
|
---|
517 | */
|
---|
518 | public function setStove($stove)
|
---|
519 | {
|
---|
520 | $this->stove = $stove;
|
---|
521 | }
|
---|
522 | /**
|
---|
523 | * @return bool
|
---|
524 | */
|
---|
525 | public function getStove()
|
---|
526 | {
|
---|
527 | return $this->stove;
|
---|
528 | }
|
---|
529 | /**
|
---|
530 | * @param string
|
---|
531 | */
|
---|
532 | public function setStoveException($stoveException)
|
---|
533 | {
|
---|
534 | $this->stoveException = $stoveException;
|
---|
535 | }
|
---|
536 | /**
|
---|
537 | * @return string
|
---|
538 | */
|
---|
539 | public function getStoveException()
|
---|
540 | {
|
---|
541 | return $this->stoveException;
|
---|
542 | }
|
---|
543 | /**
|
---|
544 | * @param bool
|
---|
545 | */
|
---|
546 | public function setTeaStation($teaStation)
|
---|
547 | {
|
---|
548 | $this->teaStation = $teaStation;
|
---|
549 | }
|
---|
550 | /**
|
---|
551 | * @return bool
|
---|
552 | */
|
---|
553 | public function getTeaStation()
|
---|
554 | {
|
---|
555 | return $this->teaStation;
|
---|
556 | }
|
---|
557 | /**
|
---|
558 | * @param string
|
---|
559 | */
|
---|
560 | public function setTeaStationException($teaStationException)
|
---|
561 | {
|
---|
562 | $this->teaStationException = $teaStationException;
|
---|
563 | }
|
---|
564 | /**
|
---|
565 | * @return string
|
---|
566 | */
|
---|
567 | public function getTeaStationException()
|
---|
568 | {
|
---|
569 | return $this->teaStationException;
|
---|
570 | }
|
---|
571 | /**
|
---|
572 | * @param bool
|
---|
573 | */
|
---|
574 | public function setToaster($toaster)
|
---|
575 | {
|
---|
576 | $this->toaster = $toaster;
|
---|
577 | }
|
---|
578 | /**
|
---|
579 | * @return bool
|
---|
580 | */
|
---|
581 | public function getToaster()
|
---|
582 | {
|
---|
583 | return $this->toaster;
|
---|
584 | }
|
---|
585 | /**
|
---|
586 | * @param string
|
---|
587 | */
|
---|
588 | public function setToasterException($toasterException)
|
---|
589 | {
|
---|
590 | $this->toasterException = $toasterException;
|
---|
591 | }
|
---|
592 | /**
|
---|
593 | * @return string
|
---|
594 | */
|
---|
595 | public function getToasterException()
|
---|
596 | {
|
---|
597 | return $this->toasterException;
|
---|
598 | }
|
---|
599 | }
|
---|
600 |
|
---|
601 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
602 | class_alias(LivingAreaEating::class, 'Google_Service_MyBusinessLodging_LivingAreaEating');
|
---|