source: vendor/google/apiclient-services/src/MyBusinessLodging/Transportation.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 5.5 KB
Line 
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 Transportation extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $airportShuttle;
26 /**
27 * @var string
28 */
29 public $airportShuttleException;
30 /**
31 * @var bool
32 */
33 public $carRentalOnProperty;
34 /**
35 * @var string
36 */
37 public $carRentalOnPropertyException;
38 /**
39 * @var bool
40 */
41 public $freeAirportShuttle;
42 /**
43 * @var string
44 */
45 public $freeAirportShuttleException;
46 /**
47 * @var bool
48 */
49 public $freePrivateCarService;
50 /**
51 * @var string
52 */
53 public $freePrivateCarServiceException;
54 /**
55 * @var bool
56 */
57 public $localShuttle;
58 /**
59 * @var string
60 */
61 public $localShuttleException;
62 /**
63 * @var bool
64 */
65 public $privateCarService;
66 /**
67 * @var string
68 */
69 public $privateCarServiceException;
70 /**
71 * @var bool
72 */
73 public $transfer;
74 /**
75 * @var string
76 */
77 public $transferException;
78
79 /**
80 * @param bool
81 */
82 public function setAirportShuttle($airportShuttle)
83 {
84 $this->airportShuttle = $airportShuttle;
85 }
86 /**
87 * @return bool
88 */
89 public function getAirportShuttle()
90 {
91 return $this->airportShuttle;
92 }
93 /**
94 * @param string
95 */
96 public function setAirportShuttleException($airportShuttleException)
97 {
98 $this->airportShuttleException = $airportShuttleException;
99 }
100 /**
101 * @return string
102 */
103 public function getAirportShuttleException()
104 {
105 return $this->airportShuttleException;
106 }
107 /**
108 * @param bool
109 */
110 public function setCarRentalOnProperty($carRentalOnProperty)
111 {
112 $this->carRentalOnProperty = $carRentalOnProperty;
113 }
114 /**
115 * @return bool
116 */
117 public function getCarRentalOnProperty()
118 {
119 return $this->carRentalOnProperty;
120 }
121 /**
122 * @param string
123 */
124 public function setCarRentalOnPropertyException($carRentalOnPropertyException)
125 {
126 $this->carRentalOnPropertyException = $carRentalOnPropertyException;
127 }
128 /**
129 * @return string
130 */
131 public function getCarRentalOnPropertyException()
132 {
133 return $this->carRentalOnPropertyException;
134 }
135 /**
136 * @param bool
137 */
138 public function setFreeAirportShuttle($freeAirportShuttle)
139 {
140 $this->freeAirportShuttle = $freeAirportShuttle;
141 }
142 /**
143 * @return bool
144 */
145 public function getFreeAirportShuttle()
146 {
147 return $this->freeAirportShuttle;
148 }
149 /**
150 * @param string
151 */
152 public function setFreeAirportShuttleException($freeAirportShuttleException)
153 {
154 $this->freeAirportShuttleException = $freeAirportShuttleException;
155 }
156 /**
157 * @return string
158 */
159 public function getFreeAirportShuttleException()
160 {
161 return $this->freeAirportShuttleException;
162 }
163 /**
164 * @param bool
165 */
166 public function setFreePrivateCarService($freePrivateCarService)
167 {
168 $this->freePrivateCarService = $freePrivateCarService;
169 }
170 /**
171 * @return bool
172 */
173 public function getFreePrivateCarService()
174 {
175 return $this->freePrivateCarService;
176 }
177 /**
178 * @param string
179 */
180 public function setFreePrivateCarServiceException($freePrivateCarServiceException)
181 {
182 $this->freePrivateCarServiceException = $freePrivateCarServiceException;
183 }
184 /**
185 * @return string
186 */
187 public function getFreePrivateCarServiceException()
188 {
189 return $this->freePrivateCarServiceException;
190 }
191 /**
192 * @param bool
193 */
194 public function setLocalShuttle($localShuttle)
195 {
196 $this->localShuttle = $localShuttle;
197 }
198 /**
199 * @return bool
200 */
201 public function getLocalShuttle()
202 {
203 return $this->localShuttle;
204 }
205 /**
206 * @param string
207 */
208 public function setLocalShuttleException($localShuttleException)
209 {
210 $this->localShuttleException = $localShuttleException;
211 }
212 /**
213 * @return string
214 */
215 public function getLocalShuttleException()
216 {
217 return $this->localShuttleException;
218 }
219 /**
220 * @param bool
221 */
222 public function setPrivateCarService($privateCarService)
223 {
224 $this->privateCarService = $privateCarService;
225 }
226 /**
227 * @return bool
228 */
229 public function getPrivateCarService()
230 {
231 return $this->privateCarService;
232 }
233 /**
234 * @param string
235 */
236 public function setPrivateCarServiceException($privateCarServiceException)
237 {
238 $this->privateCarServiceException = $privateCarServiceException;
239 }
240 /**
241 * @return string
242 */
243 public function getPrivateCarServiceException()
244 {
245 return $this->privateCarServiceException;
246 }
247 /**
248 * @param bool
249 */
250 public function setTransfer($transfer)
251 {
252 $this->transfer = $transfer;
253 }
254 /**
255 * @return bool
256 */
257 public function getTransfer()
258 {
259 return $this->transfer;
260 }
261 /**
262 * @param string
263 */
264 public function setTransferException($transferException)
265 {
266 $this->transferException = $transferException;
267 }
268 /**
269 * @return string
270 */
271 public function getTransferException()
272 {
273 return $this->transferException;
274 }
275}
276
277// Adding a class alias for backwards compatibility with the previous class name.
278class_alias(Transportation::class, 'Google_Service_MyBusinessLodging_Transportation');
Note: See TracBrowser for help on using the repository browser.