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 ViewsFromUnit extends \Google\Model 21{ 22 /** 23 * @var bool 24 */ 25 public $beachView; 26 /** 27 * @var string 28 */ 29 public $beachViewException; 30 /** 31 * @var bool 32 */ 33 public $cityView; 34 /** 35 * @var string 36 */ 37 public $cityViewException; 38 /** 39 * @var bool 40 */ 41 public $gardenView; 42 /** 43 * @var string 44 */ 45 public $gardenViewException; 46 /** 47 * @var bool 48 */ 49 public $lakeView; 50 /** 51 * @var string 52 */ 53 public $lakeViewException; 54 /** 55 * @var bool 56 */ 57 public $landmarkView; 58 /** 59 * @var string 60 */ 61 public $landmarkViewException; 62 /** 63 * @var bool 64 */ 65 public $oceanView; 66 /** 67 * @var string 68 */ 69 public $oceanViewException; 70 /** 71 * @var bool 72 */ 73 public $poolView; 74 /** 75 * @var string 76 */ 77 public $poolViewException; 78 /** 79 * @var bool 80 */ 81 public $valleyView; 82 /** 83 * @var string 84 */ 85 public $valleyViewException; 86 87 /** 88 * @param bool 89 */ 90 public function setBeachView($beachView) 91 { 92 $this->beachView = $beachView; 93 } 94 /** 95 * @return bool 96 */ 97 public function getBeachView() 98 { 99 return $this->beachView; 100 } 101 /** 102 * @param string 103 */ 104 public function setBeachViewException($beachViewException) 105 { 106 $this->beachViewException = $beachViewException; 107 } 108 /** 109 * @return string 110 */ 111 public function getBeachViewException() 112 { 113 return $this->beachViewException; 114 } 115 /** 116 * @param bool 117 */ 118 public function setCityView($cityView) 119 { 120 $this->cityView = $cityView; 121 } 122 /** 123 * @return bool 124 */ 125 public function getCityView() 126 { 127 return $this->cityView; 128 } 129 /** 130 * @param string 131 */ 132 public function setCityViewException($cityViewException) 133 { 134 $this->cityViewException = $cityViewException; 135 } 136 /** 137 * @return string 138 */ 139 public function getCityViewException() 140 { 141 return $this->cityViewException; 142 } 143 /** 144 * @param bool 145 */ 146 public function setGardenView($gardenView) 147 { 148 $this->gardenView = $gardenView; 149 } 150 /** 151 * @return bool 152 */ 153 public function getGardenView() 154 { 155 return $this->gardenView; 156 } 157 /** 158 * @param string 159 */ 160 public function setGardenViewException($gardenViewException) 161 { 162 $this->gardenViewException = $gardenViewException; 163 } 164 /** 165 * @return string 166 */ 167 public function getGardenViewException() 168 { 169 return $this->gardenViewException; 170 } 171 /** 172 * @param bool 173 */ 174 public function setLakeView($lakeView) 175 { 176 $this->lakeView = $lakeView; 177 } 178 /** 179 * @return bool 180 */ 181 public function getLakeView() 182 { 183 return $this->lakeView; 184 } 185 /** 186 * @param string 187 */ 188 public function setLakeViewException($lakeViewException) 189 { 190 $this->lakeViewException = $lakeViewException; 191 } 192 /** 193 * @return string 194 */ 195 public function getLakeViewException() 196 { 197 return $this->lakeViewException; 198 } 199 /** 200 * @param bool 201 */ 202 public function setLandmarkView($landmarkView) 203 { 204 $this->landmarkView = $landmarkView; 205 } 206 /** 207 * @return bool 208 */ 209 public function getLandmarkView() 210 { 211 return $this->landmarkView; 212 } 213 /** 214 * @param string 215 */ 216 public function setLandmarkViewException($landmarkViewException) 217 { 218 $this->landmarkViewException = $landmarkViewException; 219 } 220 /** 221 * @return string 222 */ 223 public function getLandmarkViewException() 224 { 225 return $this->landmarkViewException; 226 } 227 /** 228 * @param bool 229 */ 230 public function setOceanView($oceanView) 231 { 232 $this->oceanView = $oceanView; 233 } 234 /** 235 * @return bool 236 */ 237 public function getOceanView() 238 { 239 return $this->oceanView; 240 } 241 /** 242 * @param string 243 */ 244 public function setOceanViewException($oceanViewException) 245 { 246 $this->oceanViewException = $oceanViewException; 247 } 248 /** 249 * @return string 250 */ 251 public function getOceanViewException() 252 { 253 return $this->oceanViewException; 254 } 255 /** 256 * @param bool 257 */ 258 public function setPoolView($poolView) 259 { 260 $this->poolView = $poolView; 261 } 262 /** 263 * @return bool 264 */ 265 public function getPoolView() 266 { 267 return $this->poolView; 268 } 269 /** 270 * @param string 271 */ 272 public function setPoolViewException($poolViewException) 273 { 274 $this->poolViewException = $poolViewException; 275 } 276 /** 277 * @return string 278 */ 279 public function getPoolViewException() 280 { 281 return $this->poolViewException; 282 } 283 /** 284 * @param bool 285 */ 286 public function setValleyView($valleyView) 287 { 288 $this->valleyView = $valleyView; 289 } 290 /** 291 * @return bool 292 */ 293 public function getValleyView() 294 { 295 return $this->valleyView; 296 } 297 /** 298 * @param string 299 */ 300 public function setValleyViewException($valleyViewException) 301 { 302 $this->valleyViewException = $valleyViewException; 303 } 304 /** 305 * @return string 306 */ 307 public function getValleyViewException() 308 { 309 return $this->valleyViewException; 310 } 311} 312 313// Adding a class alias for backwards compatibility with the previous class name. 314class_alias(ViewsFromUnit::class, 'Google_Service_MyBusinessLodging_ViewsFromUnit'); 315