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 FoodAndDrink extends \Google\Model 21{ 22 /** 23 * @var bool 24 */ 25 public $bar; 26 /** 27 * @var string 28 */ 29 public $barException; 30 /** 31 * @var bool 32 */ 33 public $breakfastAvailable; 34 /** 35 * @var string 36 */ 37 public $breakfastAvailableException; 38 /** 39 * @var bool 40 */ 41 public $breakfastBuffet; 42 /** 43 * @var string 44 */ 45 public $breakfastBuffetException; 46 /** 47 * @var bool 48 */ 49 public $buffet; 50 /** 51 * @var string 52 */ 53 public $buffetException; 54 /** 55 * @var bool 56 */ 57 public $dinnerBuffet; 58 /** 59 * @var string 60 */ 61 public $dinnerBuffetException; 62 /** 63 * @var bool 64 */ 65 public $freeBreakfast; 66 /** 67 * @var string 68 */ 69 public $freeBreakfastException; 70 /** 71 * @var bool 72 */ 73 public $restaurant; 74 /** 75 * @var string 76 */ 77 public $restaurantException; 78 /** 79 * @var int 80 */ 81 public $restaurantsCount; 82 /** 83 * @var string 84 */ 85 public $restaurantsCountException; 86 /** 87 * @var bool 88 */ 89 public $roomService; 90 /** 91 * @var string 92 */ 93 public $roomServiceException; 94 /** 95 * @var bool 96 */ 97 public $tableService; 98 /** 99 * @var string 100 */ 101 public $tableServiceException; 102 /** 103 * @var bool 104 */ 105 public $twentyFourHourRoomService; 106 /** 107 * @var string 108 */ 109 public $twentyFourHourRoomServiceException; 110 /** 111 * @var bool 112 */ 113 public $vendingMachine; 114 /** 115 * @var string 116 */ 117 public $vendingMachineException; 118 119 /** 120 * @param bool 121 */ 122 public function setBar($bar) 123 { 124 $this->bar = $bar; 125 } 126 /** 127 * @return bool 128 */ 129 public function getBar() 130 { 131 return $this->bar; 132 } 133 /** 134 * @param string 135 */ 136 public function setBarException($barException) 137 { 138 $this->barException = $barException; 139 } 140 /** 141 * @return string 142 */ 143 public function getBarException() 144 { 145 return $this->barException; 146 } 147 /** 148 * @param bool 149 */ 150 public function setBreakfastAvailable($breakfastAvailable) 151 { 152 $this->breakfastAvailable = $breakfastAvailable; 153 } 154 /** 155 * @return bool 156 */ 157 public function getBreakfastAvailable() 158 { 159 return $this->breakfastAvailable; 160 } 161 /** 162 * @param string 163 */ 164 public function setBreakfastAvailableException($breakfastAvailableException) 165 { 166 $this->breakfastAvailableException = $breakfastAvailableException; 167 } 168 /** 169 * @return string 170 */ 171 public function getBreakfastAvailableException() 172 { 173 return $this->breakfastAvailableException; 174 } 175 /** 176 * @param bool 177 */ 178 public function setBreakfastBuffet($breakfastBuffet) 179 { 180 $this->breakfastBuffet = $breakfastBuffet; 181 } 182 /** 183 * @return bool 184 */ 185 public function getBreakfastBuffet() 186 { 187 return $this->breakfastBuffet; 188 } 189 /** 190 * @param string 191 */ 192 public function setBreakfastBuffetException($breakfastBuffetException) 193 { 194 $this->breakfastBuffetException = $breakfastBuffetException; 195 } 196 /** 197 * @return string 198 */ 199 public function getBreakfastBuffetException() 200 { 201 return $this->breakfastBuffetException; 202 } 203 /** 204 * @param bool 205 */ 206 public function setBuffet($buffet) 207 { 208 $this->buffet = $buffet; 209 } 210 /** 211 * @return bool 212 */ 213 public function getBuffet() 214 { 215 return $this->buffet; 216 } 217 /** 218 * @param string 219 */ 220 public function setBuffetException($buffetException) 221 { 222 $this->buffetException = $buffetException; 223 } 224 /** 225 * @return string 226 */ 227 public function getBuffetException() 228 { 229 return $this->buffetException; 230 } 231 /** 232 * @param bool 233 */ 234 public function setDinnerBuffet($dinnerBuffet) 235 { 236 $this->dinnerBuffet = $dinnerBuffet; 237 } 238 /** 239 * @return bool 240 */ 241 public function getDinnerBuffet() 242 { 243 return $this->dinnerBuffet; 244 } 245 /** 246 * @param string 247 */ 248 public function setDinnerBuffetException($dinnerBuffetException) 249 { 250 $this->dinnerBuffetException = $dinnerBuffetException; 251 } 252 /** 253 * @return string 254 */ 255 public function getDinnerBuffetException() 256 { 257 return $this->dinnerBuffetException; 258 } 259 /** 260 * @param bool 261 */ 262 public function setFreeBreakfast($freeBreakfast) 263 { 264 $this->freeBreakfast = $freeBreakfast; 265 } 266 /** 267 * @return bool 268 */ 269 public function getFreeBreakfast() 270 { 271 return $this->freeBreakfast; 272 } 273 /** 274 * @param string 275 */ 276 public function setFreeBreakfastException($freeBreakfastException) 277 { 278 $this->freeBreakfastException = $freeBreakfastException; 279 } 280 /** 281 * @return string 282 */ 283 public function getFreeBreakfastException() 284 { 285 return $this->freeBreakfastException; 286 } 287 /** 288 * @param bool 289 */ 290 public function setRestaurant($restaurant) 291 { 292 $this->restaurant = $restaurant; 293 } 294 /** 295 * @return bool 296 */ 297 public function getRestaurant() 298 { 299 return $this->restaurant; 300 } 301 /** 302 * @param string 303 */ 304 public function setRestaurantException($restaurantException) 305 { 306 $this->restaurantException = $restaurantException; 307 } 308 /** 309 * @return string 310 */ 311 public function getRestaurantException() 312 { 313 return $this->restaurantException; 314 } 315 /** 316 * @param int 317 */ 318 public function setRestaurantsCount($restaurantsCount) 319 { 320 $this->restaurantsCount = $restaurantsCount; 321 } 322 /** 323 * @return int 324 */ 325 public function getRestaurantsCount() 326 { 327 return $this->restaurantsCount; 328 } 329 /** 330 * @param string 331 */ 332 public function setRestaurantsCountException($restaurantsCountException) 333 { 334 $this->restaurantsCountException = $restaurantsCountException; 335 } 336 /** 337 * @return string 338 */ 339 public function getRestaurantsCountException() 340 { 341 return $this->restaurantsCountException; 342 } 343 /** 344 * @param bool 345 */ 346 public function setRoomService($roomService) 347 { 348 $this->roomService = $roomService; 349 } 350 /** 351 * @return bool 352 */ 353 public function getRoomService() 354 { 355 return $this->roomService; 356 } 357 /** 358 * @param string 359 */ 360 public function setRoomServiceException($roomServiceException) 361 { 362 $this->roomServiceException = $roomServiceException; 363 } 364 /** 365 * @return string 366 */ 367 public function getRoomServiceException() 368 { 369 return $this->roomServiceException; 370 } 371 /** 372 * @param bool 373 */ 374 public function setTableService($tableService) 375 { 376 $this->tableService = $tableService; 377 } 378 /** 379 * @return bool 380 */ 381 public function getTableService() 382 { 383 return $this->tableService; 384 } 385 /** 386 * @param string 387 */ 388 public function setTableServiceException($tableServiceException) 389 { 390 $this->tableServiceException = $tableServiceException; 391 } 392 /** 393 * @return string 394 */ 395 public function getTableServiceException() 396 { 397 return $this->tableServiceException; 398 } 399 /** 400 * @param bool 401 */ 402 public function setTwentyFourHourRoomService($twentyFourHourRoomService) 403 { 404 $this->twentyFourHourRoomService = $twentyFourHourRoomService; 405 } 406 /** 407 * @return bool 408 */ 409 public function getTwentyFourHourRoomService() 410 { 411 return $this->twentyFourHourRoomService; 412 } 413 /** 414 * @param string 415 */ 416 public function setTwentyFourHourRoomServiceException($twentyFourHourRoomServiceException) 417 { 418 $this->twentyFourHourRoomServiceException = $twentyFourHourRoomServiceException; 419 } 420 /** 421 * @return string 422 */ 423 public function getTwentyFourHourRoomServiceException() 424 { 425 return $this->twentyFourHourRoomServiceException; 426 } 427 /** 428 * @param bool 429 */ 430 public function setVendingMachine($vendingMachine) 431 { 432 $this->vendingMachine = $vendingMachine; 433 } 434 /** 435 * @return bool 436 */ 437 public function getVendingMachine() 438 { 439 return $this->vendingMachine; 440 } 441 /** 442 * @param string 443 */ 444 public function setVendingMachineException($vendingMachineException) 445 { 446 $this->vendingMachineException = $vendingMachineException; 447 } 448 /** 449 * @return string 450 */ 451 public function getVendingMachineException() 452 { 453 return $this->vendingMachineException; 454 } 455} 456 457// Adding a class alias for backwards compatibility with the previous class name. 458class_alias(FoodAndDrink::class, 'Google_Service_MyBusinessLodging_FoodAndDrink'); 459