Viewing file: Parking.php (4.37 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */
class Google_Service_MyBusinessLodging_Parking extends Google_Model { public $electricCarChargingStations; public $electricCarChargingStationsException; public $freeParking; public $freeParkingException; public $freeSelfParking; public $freeSelfParkingException; public $freeValetParking; public $freeValetParkingException; public $parkingAvailable; public $parkingAvailableException; public $selfParkingAvailable; public $selfParkingAvailableException; public $valetParkingAvailable; public $valetParkingAvailableException;
public function setElectricCarChargingStations($electricCarChargingStations) { $this->electricCarChargingStations = $electricCarChargingStations; } public function getElectricCarChargingStations() { return $this->electricCarChargingStations; } public function setElectricCarChargingStationsException($electricCarChargingStationsException) { $this->electricCarChargingStationsException = $electricCarChargingStationsException; } public function getElectricCarChargingStationsException() { return $this->electricCarChargingStationsException; } public function setFreeParking($freeParking) { $this->freeParking = $freeParking; } public function getFreeParking() { return $this->freeParking; } public function setFreeParkingException($freeParkingException) { $this->freeParkingException = $freeParkingException; } public function getFreeParkingException() { return $this->freeParkingException; } public function setFreeSelfParking($freeSelfParking) { $this->freeSelfParking = $freeSelfParking; } public function getFreeSelfParking() { return $this->freeSelfParking; } public function setFreeSelfParkingException($freeSelfParkingException) { $this->freeSelfParkingException = $freeSelfParkingException; } public function getFreeSelfParkingException() { return $this->freeSelfParkingException; } public function setFreeValetParking($freeValetParking) { $this->freeValetParking = $freeValetParking; } public function getFreeValetParking() { return $this->freeValetParking; } public function setFreeValetParkingException($freeValetParkingException) { $this->freeValetParkingException = $freeValetParkingException; } public function getFreeValetParkingException() { return $this->freeValetParkingException; } public function setParkingAvailable($parkingAvailable) { $this->parkingAvailable = $parkingAvailable; } public function getParkingAvailable() { return $this->parkingAvailable; } public function setParkingAvailableException($parkingAvailableException) { $this->parkingAvailableException = $parkingAvailableException; } public function getParkingAvailableException() { return $this->parkingAvailableException; } public function setSelfParkingAvailable($selfParkingAvailable) { $this->selfParkingAvailable = $selfParkingAvailable; } public function getSelfParkingAvailable() { return $this->selfParkingAvailable; } public function setSelfParkingAvailableException($selfParkingAvailableException) { $this->selfParkingAvailableException = $selfParkingAvailableException; } public function getSelfParkingAvailableException() { return $this->selfParkingAvailableException; } public function setValetParkingAvailable($valetParkingAvailable) { $this->valetParkingAvailable = $valetParkingAvailable; } public function getValetParkingAvailable() { return $this->valetParkingAvailable; } public function setValetParkingAvailableException($valetParkingAvailableException) { $this->valetParkingAvailableException = $valetParkingAvailableException; } public function getValetParkingAvailableException() { return $this->valetParkingAvailableException; } }
|