source: vendor/google/apiclient-services/src/DataLabeling/GoogleCloudDatalabelingV1beta1VideoObjectTrackingAnnotation.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: 2.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\DataLabeling;
19
20class GoogleCloudDatalabelingV1beta1VideoObjectTrackingAnnotation extends \Google\Collection
21{
22 protected $collection_key = 'objectTrackingFrames';
23 protected $annotationSpecType = GoogleCloudDatalabelingV1beta1AnnotationSpec::class;
24 protected $annotationSpecDataType = '';
25 protected $objectTrackingFramesType = GoogleCloudDatalabelingV1beta1ObjectTrackingFrame::class;
26 protected $objectTrackingFramesDataType = 'array';
27 protected $timeSegmentType = GoogleCloudDatalabelingV1beta1TimeSegment::class;
28 protected $timeSegmentDataType = '';
29
30 /**
31 * @param GoogleCloudDatalabelingV1beta1AnnotationSpec
32 */
33 public function setAnnotationSpec(GoogleCloudDatalabelingV1beta1AnnotationSpec $annotationSpec)
34 {
35 $this->annotationSpec = $annotationSpec;
36 }
37 /**
38 * @return GoogleCloudDatalabelingV1beta1AnnotationSpec
39 */
40 public function getAnnotationSpec()
41 {
42 return $this->annotationSpec;
43 }
44 /**
45 * @param GoogleCloudDatalabelingV1beta1ObjectTrackingFrame[]
46 */
47 public function setObjectTrackingFrames($objectTrackingFrames)
48 {
49 $this->objectTrackingFrames = $objectTrackingFrames;
50 }
51 /**
52 * @return GoogleCloudDatalabelingV1beta1ObjectTrackingFrame[]
53 */
54 public function getObjectTrackingFrames()
55 {
56 return $this->objectTrackingFrames;
57 }
58 /**
59 * @param GoogleCloudDatalabelingV1beta1TimeSegment
60 */
61 public function setTimeSegment(GoogleCloudDatalabelingV1beta1TimeSegment $timeSegment)
62 {
63 $this->timeSegment = $timeSegment;
64 }
65 /**
66 * @return GoogleCloudDatalabelingV1beta1TimeSegment
67 */
68 public function getTimeSegment()
69 {
70 return $this->timeSegment;
71 }
72}
73
74// Adding a class alias for backwards compatibility with the previous class name.
75class_alias(GoogleCloudDatalabelingV1beta1VideoObjectTrackingAnnotation::class, 'Google_Service_DataLabeling_GoogleCloudDatalabelingV1beta1VideoObjectTrackingAnnotation');
Note: See TracBrowser for help on using the repository browser.