source: vendor/google/apiclient-services/src/StreetViewPublish/PhotoSequence.php

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

Upload project files

  • Property mode set to 100644
File size: 5.3 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\StreetViewPublish;
19
20class PhotoSequence extends \Google\Collection
21{
22 protected $collection_key = 'rawGpsTimeline';
23 /**
24 * @var string
25 */
26 public $captureTimeOverride;
27 public $distanceMeters;
28 protected $failureDetailsType = ProcessingFailureDetails::class;
29 protected $failureDetailsDataType = '';
30 /**
31 * @var string
32 */
33 public $failureReason;
34 /**
35 * @var string
36 */
37 public $filename;
38 /**
39 * @var string
40 */
41 public $gpsSource;
42 /**
43 * @var string
44 */
45 public $id;
46 protected $imuType = Imu::class;
47 protected $imuDataType = '';
48 protected $photosType = Photo::class;
49 protected $photosDataType = 'array';
50 /**
51 * @var string
52 */
53 public $processingState;
54 protected $rawGpsTimelineType = Pose::class;
55 protected $rawGpsTimelineDataType = 'array';
56 protected $sequenceBoundsType = LatLngBounds::class;
57 protected $sequenceBoundsDataType = '';
58 protected $uploadReferenceType = UploadRef::class;
59 protected $uploadReferenceDataType = '';
60 /**
61 * @var string
62 */
63 public $uploadTime;
64 /**
65 * @var string
66 */
67 public $viewCount;
68
69 /**
70 * @param string
71 */
72 public function setCaptureTimeOverride($captureTimeOverride)
73 {
74 $this->captureTimeOverride = $captureTimeOverride;
75 }
76 /**
77 * @return string
78 */
79 public function getCaptureTimeOverride()
80 {
81 return $this->captureTimeOverride;
82 }
83 public function setDistanceMeters($distanceMeters)
84 {
85 $this->distanceMeters = $distanceMeters;
86 }
87 public function getDistanceMeters()
88 {
89 return $this->distanceMeters;
90 }
91 /**
92 * @param ProcessingFailureDetails
93 */
94 public function setFailureDetails(ProcessingFailureDetails $failureDetails)
95 {
96 $this->failureDetails = $failureDetails;
97 }
98 /**
99 * @return ProcessingFailureDetails
100 */
101 public function getFailureDetails()
102 {
103 return $this->failureDetails;
104 }
105 /**
106 * @param string
107 */
108 public function setFailureReason($failureReason)
109 {
110 $this->failureReason = $failureReason;
111 }
112 /**
113 * @return string
114 */
115 public function getFailureReason()
116 {
117 return $this->failureReason;
118 }
119 /**
120 * @param string
121 */
122 public function setFilename($filename)
123 {
124 $this->filename = $filename;
125 }
126 /**
127 * @return string
128 */
129 public function getFilename()
130 {
131 return $this->filename;
132 }
133 /**
134 * @param string
135 */
136 public function setGpsSource($gpsSource)
137 {
138 $this->gpsSource = $gpsSource;
139 }
140 /**
141 * @return string
142 */
143 public function getGpsSource()
144 {
145 return $this->gpsSource;
146 }
147 /**
148 * @param string
149 */
150 public function setId($id)
151 {
152 $this->id = $id;
153 }
154 /**
155 * @return string
156 */
157 public function getId()
158 {
159 return $this->id;
160 }
161 /**
162 * @param Imu
163 */
164 public function setImu(Imu $imu)
165 {
166 $this->imu = $imu;
167 }
168 /**
169 * @return Imu
170 */
171 public function getImu()
172 {
173 return $this->imu;
174 }
175 /**
176 * @param Photo[]
177 */
178 public function setPhotos($photos)
179 {
180 $this->photos = $photos;
181 }
182 /**
183 * @return Photo[]
184 */
185 public function getPhotos()
186 {
187 return $this->photos;
188 }
189 /**
190 * @param string
191 */
192 public function setProcessingState($processingState)
193 {
194 $this->processingState = $processingState;
195 }
196 /**
197 * @return string
198 */
199 public function getProcessingState()
200 {
201 return $this->processingState;
202 }
203 /**
204 * @param Pose[]
205 */
206 public function setRawGpsTimeline($rawGpsTimeline)
207 {
208 $this->rawGpsTimeline = $rawGpsTimeline;
209 }
210 /**
211 * @return Pose[]
212 */
213 public function getRawGpsTimeline()
214 {
215 return $this->rawGpsTimeline;
216 }
217 /**
218 * @param LatLngBounds
219 */
220 public function setSequenceBounds(LatLngBounds $sequenceBounds)
221 {
222 $this->sequenceBounds = $sequenceBounds;
223 }
224 /**
225 * @return LatLngBounds
226 */
227 public function getSequenceBounds()
228 {
229 return $this->sequenceBounds;
230 }
231 /**
232 * @param UploadRef
233 */
234 public function setUploadReference(UploadRef $uploadReference)
235 {
236 $this->uploadReference = $uploadReference;
237 }
238 /**
239 * @return UploadRef
240 */
241 public function getUploadReference()
242 {
243 return $this->uploadReference;
244 }
245 /**
246 * @param string
247 */
248 public function setUploadTime($uploadTime)
249 {
250 $this->uploadTime = $uploadTime;
251 }
252 /**
253 * @return string
254 */
255 public function getUploadTime()
256 {
257 return $this->uploadTime;
258 }
259 /**
260 * @param string
261 */
262 public function setViewCount($viewCount)
263 {
264 $this->viewCount = $viewCount;
265 }
266 /**
267 * @return string
268 */
269 public function getViewCount()
270 {
271 return $this->viewCount;
272 }
273}
274
275// Adding a class alias for backwards compatibility with the previous class name.
276class_alias(PhotoSequence::class, 'Google_Service_StreetViewPublish_PhotoSequence');
Note: See TracBrowser for help on using the repository browser.