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 GoogleCloudDatalabelingV1beta1AnnotatedDatasetMetadata extends \Google\Model
21{
22  protected $boundingPolyConfigType = GoogleCloudDatalabelingV1beta1BoundingPolyConfig::class;
23  protected $boundingPolyConfigDataType = '';
24  protected $eventConfigType = GoogleCloudDatalabelingV1beta1EventConfig::class;
25  protected $eventConfigDataType = '';
26  protected $humanAnnotationConfigType = GoogleCloudDatalabelingV1beta1HumanAnnotationConfig::class;
27  protected $humanAnnotationConfigDataType = '';
28  protected $imageClassificationConfigType = GoogleCloudDatalabelingV1beta1ImageClassificationConfig::class;
29  protected $imageClassificationConfigDataType = '';
30  protected $objectDetectionConfigType = GoogleCloudDatalabelingV1beta1ObjectDetectionConfig::class;
31  protected $objectDetectionConfigDataType = '';
32  protected $objectTrackingConfigType = GoogleCloudDatalabelingV1beta1ObjectTrackingConfig::class;
33  protected $objectTrackingConfigDataType = '';
34  protected $polylineConfigType = GoogleCloudDatalabelingV1beta1PolylineConfig::class;
35  protected $polylineConfigDataType = '';
36  protected $segmentationConfigType = GoogleCloudDatalabelingV1beta1SegmentationConfig::class;
37  protected $segmentationConfigDataType = '';
38  protected $textClassificationConfigType = GoogleCloudDatalabelingV1beta1TextClassificationConfig::class;
39  protected $textClassificationConfigDataType = '';
40  protected $textEntityExtractionConfigType = GoogleCloudDatalabelingV1beta1TextEntityExtractionConfig::class;
41  protected $textEntityExtractionConfigDataType = '';
42  protected $videoClassificationConfigType = GoogleCloudDatalabelingV1beta1VideoClassificationConfig::class;
43  protected $videoClassificationConfigDataType = '';
44
45  /**
46   * @param GoogleCloudDatalabelingV1beta1BoundingPolyConfig
47   */
48  public function setBoundingPolyConfig(GoogleCloudDatalabelingV1beta1BoundingPolyConfig $boundingPolyConfig)
49  {
50    $this->boundingPolyConfig = $boundingPolyConfig;
51  }
52  /**
53   * @return GoogleCloudDatalabelingV1beta1BoundingPolyConfig
54   */
55  public function getBoundingPolyConfig()
56  {
57    return $this->boundingPolyConfig;
58  }
59  /**
60   * @param GoogleCloudDatalabelingV1beta1EventConfig
61   */
62  public function setEventConfig(GoogleCloudDatalabelingV1beta1EventConfig $eventConfig)
63  {
64    $this->eventConfig = $eventConfig;
65  }
66  /**
67   * @return GoogleCloudDatalabelingV1beta1EventConfig
68   */
69  public function getEventConfig()
70  {
71    return $this->eventConfig;
72  }
73  /**
74   * @param GoogleCloudDatalabelingV1beta1HumanAnnotationConfig
75   */
76  public function setHumanAnnotationConfig(GoogleCloudDatalabelingV1beta1HumanAnnotationConfig $humanAnnotationConfig)
77  {
78    $this->humanAnnotationConfig = $humanAnnotationConfig;
79  }
80  /**
81   * @return GoogleCloudDatalabelingV1beta1HumanAnnotationConfig
82   */
83  public function getHumanAnnotationConfig()
84  {
85    return $this->humanAnnotationConfig;
86  }
87  /**
88   * @param GoogleCloudDatalabelingV1beta1ImageClassificationConfig
89   */
90  public function setImageClassificationConfig(GoogleCloudDatalabelingV1beta1ImageClassificationConfig $imageClassificationConfig)
91  {
92    $this->imageClassificationConfig = $imageClassificationConfig;
93  }
94  /**
95   * @return GoogleCloudDatalabelingV1beta1ImageClassificationConfig
96   */
97  public function getImageClassificationConfig()
98  {
99    return $this->imageClassificationConfig;
100  }
101  /**
102   * @param GoogleCloudDatalabelingV1beta1ObjectDetectionConfig
103   */
104  public function setObjectDetectionConfig(GoogleCloudDatalabelingV1beta1ObjectDetectionConfig $objectDetectionConfig)
105  {
106    $this->objectDetectionConfig = $objectDetectionConfig;
107  }
108  /**
109   * @return GoogleCloudDatalabelingV1beta1ObjectDetectionConfig
110   */
111  public function getObjectDetectionConfig()
112  {
113    return $this->objectDetectionConfig;
114  }
115  /**
116   * @param GoogleCloudDatalabelingV1beta1ObjectTrackingConfig
117   */
118  public function setObjectTrackingConfig(GoogleCloudDatalabelingV1beta1ObjectTrackingConfig $objectTrackingConfig)
119  {
120    $this->objectTrackingConfig = $objectTrackingConfig;
121  }
122  /**
123   * @return GoogleCloudDatalabelingV1beta1ObjectTrackingConfig
124   */
125  public function getObjectTrackingConfig()
126  {
127    return $this->objectTrackingConfig;
128  }
129  /**
130   * @param GoogleCloudDatalabelingV1beta1PolylineConfig
131   */
132  public function setPolylineConfig(GoogleCloudDatalabelingV1beta1PolylineConfig $polylineConfig)
133  {
134    $this->polylineConfig = $polylineConfig;
135  }
136  /**
137   * @return GoogleCloudDatalabelingV1beta1PolylineConfig
138   */
139  public function getPolylineConfig()
140  {
141    return $this->polylineConfig;
142  }
143  /**
144   * @param GoogleCloudDatalabelingV1beta1SegmentationConfig
145   */
146  public function setSegmentationConfig(GoogleCloudDatalabelingV1beta1SegmentationConfig $segmentationConfig)
147  {
148    $this->segmentationConfig = $segmentationConfig;
149  }
150  /**
151   * @return GoogleCloudDatalabelingV1beta1SegmentationConfig
152   */
153  public function getSegmentationConfig()
154  {
155    return $this->segmentationConfig;
156  }
157  /**
158   * @param GoogleCloudDatalabelingV1beta1TextClassificationConfig
159   */
160  public function setTextClassificationConfig(GoogleCloudDatalabelingV1beta1TextClassificationConfig $textClassificationConfig)
161  {
162    $this->textClassificationConfig = $textClassificationConfig;
163  }
164  /**
165   * @return GoogleCloudDatalabelingV1beta1TextClassificationConfig
166   */
167  public function getTextClassificationConfig()
168  {
169    return $this->textClassificationConfig;
170  }
171  /**
172   * @param GoogleCloudDatalabelingV1beta1TextEntityExtractionConfig
173   */
174  public function setTextEntityExtractionConfig(GoogleCloudDatalabelingV1beta1TextEntityExtractionConfig $textEntityExtractionConfig)
175  {
176    $this->textEntityExtractionConfig = $textEntityExtractionConfig;
177  }
178  /**
179   * @return GoogleCloudDatalabelingV1beta1TextEntityExtractionConfig
180   */
181  public function getTextEntityExtractionConfig()
182  {
183    return $this->textEntityExtractionConfig;
184  }
185  /**
186   * @param GoogleCloudDatalabelingV1beta1VideoClassificationConfig
187   */
188  public function setVideoClassificationConfig(GoogleCloudDatalabelingV1beta1VideoClassificationConfig $videoClassificationConfig)
189  {
190    $this->videoClassificationConfig = $videoClassificationConfig;
191  }
192  /**
193   * @return GoogleCloudDatalabelingV1beta1VideoClassificationConfig
194   */
195  public function getVideoClassificationConfig()
196  {
197    return $this->videoClassificationConfig;
198  }
199}
200
201// Adding a class alias for backwards compatibility with the previous class name.
202class_alias(GoogleCloudDatalabelingV1beta1AnnotatedDatasetMetadata::class, 'Google_Service_DataLabeling_GoogleCloudDatalabelingV1beta1AnnotatedDatasetMetadata');
203