123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- /*
- * Copyright 2014 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
- class Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoAnnotationResults extends Google_Collection
- {
- protected $collection_key = 'shotLabelAnnotations';
- protected $errorType = 'Google_Service_CloudVideoIntelligence_GoogleRpcStatus';
- protected $errorDataType = '';
- protected $explicitAnnotationType = 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation';
- protected $explicitAnnotationDataType = '';
- protected $frameLabelAnnotationsType = 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation';
- protected $frameLabelAnnotationsDataType = 'array';
- public $inputUri;
- protected $segmentLabelAnnotationsType = 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation';
- protected $segmentLabelAnnotationsDataType = 'array';
- protected $shotAnnotationsType = 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment';
- protected $shotAnnotationsDataType = 'array';
- protected $shotLabelAnnotationsType = 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation';
- protected $shotLabelAnnotationsDataType = 'array';
-
- /**
- * @param Google_Service_CloudVideoIntelligence_GoogleRpcStatus
- */
- public function setError(Google_Service_CloudVideoIntelligence_GoogleRpcStatus $error)
- {
- $this->error = $error;
- }
- /**
- * @return Google_Service_CloudVideoIntelligence_GoogleRpcStatus
- */
- public function getError()
- {
- return $this->error;
- }
- /**
- * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation
- */
- public function setExplicitAnnotation(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation $explicitAnnotation)
- {
- $this->explicitAnnotation = $explicitAnnotation;
- }
- /**
- * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation
- */
- public function getExplicitAnnotation()
- {
- return $this->explicitAnnotation;
- }
- /**
- * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation
- */
- public function setFrameLabelAnnotations($frameLabelAnnotations)
- {
- $this->frameLabelAnnotations = $frameLabelAnnotations;
- }
- /**
- * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation
- */
- public function getFrameLabelAnnotations()
- {
- return $this->frameLabelAnnotations;
- }
- public function setInputUri($inputUri)
- {
- $this->inputUri = $inputUri;
- }
- public function getInputUri()
- {
- return $this->inputUri;
- }
- /**
- * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation
- */
- public function setSegmentLabelAnnotations($segmentLabelAnnotations)
- {
- $this->segmentLabelAnnotations = $segmentLabelAnnotations;
- }
- /**
- * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation
- */
- public function getSegmentLabelAnnotations()
- {
- return $this->segmentLabelAnnotations;
- }
- /**
- * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment
- */
- public function setShotAnnotations($shotAnnotations)
- {
- $this->shotAnnotations = $shotAnnotations;
- }
- /**
- * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment
- */
- public function getShotAnnotations()
- {
- return $this->shotAnnotations;
- }
- /**
- * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation
- */
- public function setShotLabelAnnotations($shotLabelAnnotations)
- {
- $this->shotLabelAnnotations = $shotLabelAnnotations;
- }
- /**
- * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation
- */
- public function getShotLabelAnnotations()
- {
- return $this->shotLabelAnnotations;
- }
- }
|