source: vendor/google/apiclient-services/src/Drive/DriveFileImageMediaMetadata.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 6.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\Drive;
19
20class DriveFileImageMediaMetadata extends \Google\Model
21{
22 /**
23 * @var float
24 */
25 public $aperture;
26 /**
27 * @var string
28 */
29 public $cameraMake;
30 /**
31 * @var string
32 */
33 public $cameraModel;
34 /**
35 * @var string
36 */
37 public $colorSpace;
38 /**
39 * @var float
40 */
41 public $exposureBias;
42 /**
43 * @var string
44 */
45 public $exposureMode;
46 /**
47 * @var float
48 */
49 public $exposureTime;
50 /**
51 * @var bool
52 */
53 public $flashUsed;
54 /**
55 * @var float
56 */
57 public $focalLength;
58 /**
59 * @var int
60 */
61 public $height;
62 /**
63 * @var int
64 */
65 public $isoSpeed;
66 /**
67 * @var string
68 */
69 public $lens;
70 protected $locationType = DriveFileImageMediaMetadataLocation::class;
71 protected $locationDataType = '';
72 /**
73 * @var float
74 */
75 public $maxApertureValue;
76 /**
77 * @var string
78 */
79 public $meteringMode;
80 /**
81 * @var int
82 */
83 public $rotation;
84 /**
85 * @var string
86 */
87 public $sensor;
88 /**
89 * @var int
90 */
91 public $subjectDistance;
92 /**
93 * @var string
94 */
95 public $time;
96 /**
97 * @var string
98 */
99 public $whiteBalance;
100 /**
101 * @var int
102 */
103 public $width;
104
105 /**
106 * @param float
107 */
108 public function setAperture($aperture)
109 {
110 $this->aperture = $aperture;
111 }
112 /**
113 * @return float
114 */
115 public function getAperture()
116 {
117 return $this->aperture;
118 }
119 /**
120 * @param string
121 */
122 public function setCameraMake($cameraMake)
123 {
124 $this->cameraMake = $cameraMake;
125 }
126 /**
127 * @return string
128 */
129 public function getCameraMake()
130 {
131 return $this->cameraMake;
132 }
133 /**
134 * @param string
135 */
136 public function setCameraModel($cameraModel)
137 {
138 $this->cameraModel = $cameraModel;
139 }
140 /**
141 * @return string
142 */
143 public function getCameraModel()
144 {
145 return $this->cameraModel;
146 }
147 /**
148 * @param string
149 */
150 public function setColorSpace($colorSpace)
151 {
152 $this->colorSpace = $colorSpace;
153 }
154 /**
155 * @return string
156 */
157 public function getColorSpace()
158 {
159 return $this->colorSpace;
160 }
161 /**
162 * @param float
163 */
164 public function setExposureBias($exposureBias)
165 {
166 $this->exposureBias = $exposureBias;
167 }
168 /**
169 * @return float
170 */
171 public function getExposureBias()
172 {
173 return $this->exposureBias;
174 }
175 /**
176 * @param string
177 */
178 public function setExposureMode($exposureMode)
179 {
180 $this->exposureMode = $exposureMode;
181 }
182 /**
183 * @return string
184 */
185 public function getExposureMode()
186 {
187 return $this->exposureMode;
188 }
189 /**
190 * @param float
191 */
192 public function setExposureTime($exposureTime)
193 {
194 $this->exposureTime = $exposureTime;
195 }
196 /**
197 * @return float
198 */
199 public function getExposureTime()
200 {
201 return $this->exposureTime;
202 }
203 /**
204 * @param bool
205 */
206 public function setFlashUsed($flashUsed)
207 {
208 $this->flashUsed = $flashUsed;
209 }
210 /**
211 * @return bool
212 */
213 public function getFlashUsed()
214 {
215 return $this->flashUsed;
216 }
217 /**
218 * @param float
219 */
220 public function setFocalLength($focalLength)
221 {
222 $this->focalLength = $focalLength;
223 }
224 /**
225 * @return float
226 */
227 public function getFocalLength()
228 {
229 return $this->focalLength;
230 }
231 /**
232 * @param int
233 */
234 public function setHeight($height)
235 {
236 $this->height = $height;
237 }
238 /**
239 * @return int
240 */
241 public function getHeight()
242 {
243 return $this->height;
244 }
245 /**
246 * @param int
247 */
248 public function setIsoSpeed($isoSpeed)
249 {
250 $this->isoSpeed = $isoSpeed;
251 }
252 /**
253 * @return int
254 */
255 public function getIsoSpeed()
256 {
257 return $this->isoSpeed;
258 }
259 /**
260 * @param string
261 */
262 public function setLens($lens)
263 {
264 $this->lens = $lens;
265 }
266 /**
267 * @return string
268 */
269 public function getLens()
270 {
271 return $this->lens;
272 }
273 /**
274 * @param DriveFileImageMediaMetadataLocation
275 */
276 public function setLocation(DriveFileImageMediaMetadataLocation $location)
277 {
278 $this->location = $location;
279 }
280 /**
281 * @return DriveFileImageMediaMetadataLocation
282 */
283 public function getLocation()
284 {
285 return $this->location;
286 }
287 /**
288 * @param float
289 */
290 public function setMaxApertureValue($maxApertureValue)
291 {
292 $this->maxApertureValue = $maxApertureValue;
293 }
294 /**
295 * @return float
296 */
297 public function getMaxApertureValue()
298 {
299 return $this->maxApertureValue;
300 }
301 /**
302 * @param string
303 */
304 public function setMeteringMode($meteringMode)
305 {
306 $this->meteringMode = $meteringMode;
307 }
308 /**
309 * @return string
310 */
311 public function getMeteringMode()
312 {
313 return $this->meteringMode;
314 }
315 /**
316 * @param int
317 */
318 public function setRotation($rotation)
319 {
320 $this->rotation = $rotation;
321 }
322 /**
323 * @return int
324 */
325 public function getRotation()
326 {
327 return $this->rotation;
328 }
329 /**
330 * @param string
331 */
332 public function setSensor($sensor)
333 {
334 $this->sensor = $sensor;
335 }
336 /**
337 * @return string
338 */
339 public function getSensor()
340 {
341 return $this->sensor;
342 }
343 /**
344 * @param int
345 */
346 public function setSubjectDistance($subjectDistance)
347 {
348 $this->subjectDistance = $subjectDistance;
349 }
350 /**
351 * @return int
352 */
353 public function getSubjectDistance()
354 {
355 return $this->subjectDistance;
356 }
357 /**
358 * @param string
359 */
360 public function setTime($time)
361 {
362 $this->time = $time;
363 }
364 /**
365 * @return string
366 */
367 public function getTime()
368 {
369 return $this->time;
370 }
371 /**
372 * @param string
373 */
374 public function setWhiteBalance($whiteBalance)
375 {
376 $this->whiteBalance = $whiteBalance;
377 }
378 /**
379 * @return string
380 */
381 public function getWhiteBalance()
382 {
383 return $this->whiteBalance;
384 }
385 /**
386 * @param int
387 */
388 public function setWidth($width)
389 {
390 $this->width = $width;
391 }
392 /**
393 * @return int
394 */
395 public function getWidth()
396 {
397 return $this->width;
398 }
399}
400
401// Adding a class alias for backwards compatibility with the previous class name.
402class_alias(DriveFileImageMediaMetadata::class, 'Google_Service_Drive_DriveFileImageMediaMetadata');
Note: See TracBrowser for help on using the repository browser.