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
18class Google_Service_PhotosLibrary_Photo extends Google_Model
19{
20  public $apertureFNumber;
21  public $cameraMake;
22  public $cameraModel;
23  public $exposureTime;
24  public $focalLength;
25  public $isoEquivalent;
26
27  public function setApertureFNumber($apertureFNumber)
28  {
29    $this->apertureFNumber = $apertureFNumber;
30  }
31  public function getApertureFNumber()
32  {
33    return $this->apertureFNumber;
34  }
35  public function setCameraMake($cameraMake)
36  {
37    $this->cameraMake = $cameraMake;
38  }
39  public function getCameraMake()
40  {
41    return $this->cameraMake;
42  }
43  public function setCameraModel($cameraModel)
44  {
45    $this->cameraModel = $cameraModel;
46  }
47  public function getCameraModel()
48  {
49    return $this->cameraModel;
50  }
51  public function setExposureTime($exposureTime)
52  {
53    $this->exposureTime = $exposureTime;
54  }
55  public function getExposureTime()
56  {
57    return $this->exposureTime;
58  }
59  public function setFocalLength($focalLength)
60  {
61    $this->focalLength = $focalLength;
62  }
63  public function getFocalLength()
64  {
65    return $this->focalLength;
66  }
67  public function setIsoEquivalent($isoEquivalent)
68  {
69    $this->isoEquivalent = $isoEquivalent;
70  }
71  public function getIsoEquivalent()
72  {
73    return $this->isoEquivalent;
74  }
75}
76