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 Activities extends \Google\Model
21{
22  /**
23   * @var bool
24   */
25  public $beachAccess;
26  /**
27   * @var string
28   */
29  public $beachAccessException;
30  /**
31   * @var bool
32   */
33  public $beachFront;
34  /**
35   * @var string
36   */
37  public $beachFrontException;
38  /**
39   * @var bool
40   */
41  public $bicycleRental;
42  /**
43   * @var string
44   */
45  public $bicycleRentalException;
46  /**
47   * @var bool
48   */
49  public $boutiqueStores;
50  /**
51   * @var string
52   */
53  public $boutiqueStoresException;
54  /**
55   * @var bool
56   */
57  public $casino;
58  /**
59   * @var string
60   */
61  public $casinoException;
62  /**
63   * @var bool
64   */
65  public $freeBicycleRental;
66  /**
67   * @var string
68   */
69  public $freeBicycleRentalException;
70  /**
71   * @var bool
72   */
73  public $freeWatercraftRental;
74  /**
75   * @var string
76   */
77  public $freeWatercraftRentalException;
78  /**
79   * @var bool
80   */
81  public $gameRoom;
82  /**
83   * @var string
84   */
85  public $gameRoomException;
86  /**
87   * @var bool
88   */
89  public $golf;
90  /**
91   * @var string
92   */
93  public $golfException;
94  /**
95   * @var bool
96   */
97  public $horsebackRiding;
98  /**
99   * @var string
100   */
101  public $horsebackRidingException;
102  /**
103   * @var bool
104   */
105  public $nightclub;
106  /**
107   * @var string
108   */
109  public $nightclubException;
110  /**
111   * @var bool
112   */
113  public $privateBeach;
114  /**
115   * @var string
116   */
117  public $privateBeachException;
118  /**
119   * @var bool
120   */
121  public $scuba;
122  /**
123   * @var string
124   */
125  public $scubaException;
126  /**
127   * @var bool
128   */
129  public $snorkeling;
130  /**
131   * @var string
132   */
133  public $snorkelingException;
134  /**
135   * @var bool
136   */
137  public $tennis;
138  /**
139   * @var string
140   */
141  public $tennisException;
142  /**
143   * @var bool
144   */
145  public $waterSkiing;
146  /**
147   * @var string
148   */
149  public $waterSkiingException;
150  /**
151   * @var bool
152   */
153  public $watercraftRental;
154  /**
155   * @var string
156   */
157  public $watercraftRentalException;
158
159  /**
160   * @param bool
161   */
162  public function setBeachAccess($beachAccess)
163  {
164    $this->beachAccess = $beachAccess;
165  }
166  /**
167   * @return bool
168   */
169  public function getBeachAccess()
170  {
171    return $this->beachAccess;
172  }
173  /**
174   * @param string
175   */
176  public function setBeachAccessException($beachAccessException)
177  {
178    $this->beachAccessException = $beachAccessException;
179  }
180  /**
181   * @return string
182   */
183  public function getBeachAccessException()
184  {
185    return $this->beachAccessException;
186  }
187  /**
188   * @param bool
189   */
190  public function setBeachFront($beachFront)
191  {
192    $this->beachFront = $beachFront;
193  }
194  /**
195   * @return bool
196   */
197  public function getBeachFront()
198  {
199    return $this->beachFront;
200  }
201  /**
202   * @param string
203   */
204  public function setBeachFrontException($beachFrontException)
205  {
206    $this->beachFrontException = $beachFrontException;
207  }
208  /**
209   * @return string
210   */
211  public function getBeachFrontException()
212  {
213    return $this->beachFrontException;
214  }
215  /**
216   * @param bool
217   */
218  public function setBicycleRental($bicycleRental)
219  {
220    $this->bicycleRental = $bicycleRental;
221  }
222  /**
223   * @return bool
224   */
225  public function getBicycleRental()
226  {
227    return $this->bicycleRental;
228  }
229  /**
230   * @param string
231   */
232  public function setBicycleRentalException($bicycleRentalException)
233  {
234    $this->bicycleRentalException = $bicycleRentalException;
235  }
236  /**
237   * @return string
238   */
239  public function getBicycleRentalException()
240  {
241    return $this->bicycleRentalException;
242  }
243  /**
244   * @param bool
245   */
246  public function setBoutiqueStores($boutiqueStores)
247  {
248    $this->boutiqueStores = $boutiqueStores;
249  }
250  /**
251   * @return bool
252   */
253  public function getBoutiqueStores()
254  {
255    return $this->boutiqueStores;
256  }
257  /**
258   * @param string
259   */
260  public function setBoutiqueStoresException($boutiqueStoresException)
261  {
262    $this->boutiqueStoresException = $boutiqueStoresException;
263  }
264  /**
265   * @return string
266   */
267  public function getBoutiqueStoresException()
268  {
269    return $this->boutiqueStoresException;
270  }
271  /**
272   * @param bool
273   */
274  public function setCasino($casino)
275  {
276    $this->casino = $casino;
277  }
278  /**
279   * @return bool
280   */
281  public function getCasino()
282  {
283    return $this->casino;
284  }
285  /**
286   * @param string
287   */
288  public function setCasinoException($casinoException)
289  {
290    $this->casinoException = $casinoException;
291  }
292  /**
293   * @return string
294   */
295  public function getCasinoException()
296  {
297    return $this->casinoException;
298  }
299  /**
300   * @param bool
301   */
302  public function setFreeBicycleRental($freeBicycleRental)
303  {
304    $this->freeBicycleRental = $freeBicycleRental;
305  }
306  /**
307   * @return bool
308   */
309  public function getFreeBicycleRental()
310  {
311    return $this->freeBicycleRental;
312  }
313  /**
314   * @param string
315   */
316  public function setFreeBicycleRentalException($freeBicycleRentalException)
317  {
318    $this->freeBicycleRentalException = $freeBicycleRentalException;
319  }
320  /**
321   * @return string
322   */
323  public function getFreeBicycleRentalException()
324  {
325    return $this->freeBicycleRentalException;
326  }
327  /**
328   * @param bool
329   */
330  public function setFreeWatercraftRental($freeWatercraftRental)
331  {
332    $this->freeWatercraftRental = $freeWatercraftRental;
333  }
334  /**
335   * @return bool
336   */
337  public function getFreeWatercraftRental()
338  {
339    return $this->freeWatercraftRental;
340  }
341  /**
342   * @param string
343   */
344  public function setFreeWatercraftRentalException($freeWatercraftRentalException)
345  {
346    $this->freeWatercraftRentalException = $freeWatercraftRentalException;
347  }
348  /**
349   * @return string
350   */
351  public function getFreeWatercraftRentalException()
352  {
353    return $this->freeWatercraftRentalException;
354  }
355  /**
356   * @param bool
357   */
358  public function setGameRoom($gameRoom)
359  {
360    $this->gameRoom = $gameRoom;
361  }
362  /**
363   * @return bool
364   */
365  public function getGameRoom()
366  {
367    return $this->gameRoom;
368  }
369  /**
370   * @param string
371   */
372  public function setGameRoomException($gameRoomException)
373  {
374    $this->gameRoomException = $gameRoomException;
375  }
376  /**
377   * @return string
378   */
379  public function getGameRoomException()
380  {
381    return $this->gameRoomException;
382  }
383  /**
384   * @param bool
385   */
386  public function setGolf($golf)
387  {
388    $this->golf = $golf;
389  }
390  /**
391   * @return bool
392   */
393  public function getGolf()
394  {
395    return $this->golf;
396  }
397  /**
398   * @param string
399   */
400  public function setGolfException($golfException)
401  {
402    $this->golfException = $golfException;
403  }
404  /**
405   * @return string
406   */
407  public function getGolfException()
408  {
409    return $this->golfException;
410  }
411  /**
412   * @param bool
413   */
414  public function setHorsebackRiding($horsebackRiding)
415  {
416    $this->horsebackRiding = $horsebackRiding;
417  }
418  /**
419   * @return bool
420   */
421  public function getHorsebackRiding()
422  {
423    return $this->horsebackRiding;
424  }
425  /**
426   * @param string
427   */
428  public function setHorsebackRidingException($horsebackRidingException)
429  {
430    $this->horsebackRidingException = $horsebackRidingException;
431  }
432  /**
433   * @return string
434   */
435  public function getHorsebackRidingException()
436  {
437    return $this->horsebackRidingException;
438  }
439  /**
440   * @param bool
441   */
442  public function setNightclub($nightclub)
443  {
444    $this->nightclub = $nightclub;
445  }
446  /**
447   * @return bool
448   */
449  public function getNightclub()
450  {
451    return $this->nightclub;
452  }
453  /**
454   * @param string
455   */
456  public function setNightclubException($nightclubException)
457  {
458    $this->nightclubException = $nightclubException;
459  }
460  /**
461   * @return string
462   */
463  public function getNightclubException()
464  {
465    return $this->nightclubException;
466  }
467  /**
468   * @param bool
469   */
470  public function setPrivateBeach($privateBeach)
471  {
472    $this->privateBeach = $privateBeach;
473  }
474  /**
475   * @return bool
476   */
477  public function getPrivateBeach()
478  {
479    return $this->privateBeach;
480  }
481  /**
482   * @param string
483   */
484  public function setPrivateBeachException($privateBeachException)
485  {
486    $this->privateBeachException = $privateBeachException;
487  }
488  /**
489   * @return string
490   */
491  public function getPrivateBeachException()
492  {
493    return $this->privateBeachException;
494  }
495  /**
496   * @param bool
497   */
498  public function setScuba($scuba)
499  {
500    $this->scuba = $scuba;
501  }
502  /**
503   * @return bool
504   */
505  public function getScuba()
506  {
507    return $this->scuba;
508  }
509  /**
510   * @param string
511   */
512  public function setScubaException($scubaException)
513  {
514    $this->scubaException = $scubaException;
515  }
516  /**
517   * @return string
518   */
519  public function getScubaException()
520  {
521    return $this->scubaException;
522  }
523  /**
524   * @param bool
525   */
526  public function setSnorkeling($snorkeling)
527  {
528    $this->snorkeling = $snorkeling;
529  }
530  /**
531   * @return bool
532   */
533  public function getSnorkeling()
534  {
535    return $this->snorkeling;
536  }
537  /**
538   * @param string
539   */
540  public function setSnorkelingException($snorkelingException)
541  {
542    $this->snorkelingException = $snorkelingException;
543  }
544  /**
545   * @return string
546   */
547  public function getSnorkelingException()
548  {
549    return $this->snorkelingException;
550  }
551  /**
552   * @param bool
553   */
554  public function setTennis($tennis)
555  {
556    $this->tennis = $tennis;
557  }
558  /**
559   * @return bool
560   */
561  public function getTennis()
562  {
563    return $this->tennis;
564  }
565  /**
566   * @param string
567   */
568  public function setTennisException($tennisException)
569  {
570    $this->tennisException = $tennisException;
571  }
572  /**
573   * @return string
574   */
575  public function getTennisException()
576  {
577    return $this->tennisException;
578  }
579  /**
580   * @param bool
581   */
582  public function setWaterSkiing($waterSkiing)
583  {
584    $this->waterSkiing = $waterSkiing;
585  }
586  /**
587   * @return bool
588   */
589  public function getWaterSkiing()
590  {
591    return $this->waterSkiing;
592  }
593  /**
594   * @param string
595   */
596  public function setWaterSkiingException($waterSkiingException)
597  {
598    $this->waterSkiingException = $waterSkiingException;
599  }
600  /**
601   * @return string
602   */
603  public function getWaterSkiingException()
604  {
605    return $this->waterSkiingException;
606  }
607  /**
608   * @param bool
609   */
610  public function setWatercraftRental($watercraftRental)
611  {
612    $this->watercraftRental = $watercraftRental;
613  }
614  /**
615   * @return bool
616   */
617  public function getWatercraftRental()
618  {
619    return $this->watercraftRental;
620  }
621  /**
622   * @param string
623   */
624  public function setWatercraftRentalException($watercraftRentalException)
625  {
626    $this->watercraftRentalException = $watercraftRentalException;
627  }
628  /**
629   * @return string
630   */
631  public function getWatercraftRentalException()
632  {
633    return $this->watercraftRentalException;
634  }
635}
636
637// Adding a class alias for backwards compatibility with the previous class name.
638class_alias(Activities::class, 'Google_Service_MyBusinessLodging_Activities');
639