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 |
|
---|
18 | namespace Google\Service\CloudNaturalLanguage;
|
---|
19 |
|
---|
20 | class XPSXpsOperationMetadata extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var string
|
---|
24 | */
|
---|
25 | public $exampleCount;
|
---|
26 | protected $reportingMetricsType = XPSReportingMetrics::class;
|
---|
27 | protected $reportingMetricsDataType = '';
|
---|
28 | protected $tablesTrainingOperationMetadataType = XPSTablesTrainingOperationMetadata::class;
|
---|
29 | protected $tablesTrainingOperationMetadataDataType = '';
|
---|
30 | protected $videoBatchPredictOperationMetadataType = XPSVideoBatchPredictOperationMetadata::class;
|
---|
31 | protected $videoBatchPredictOperationMetadataDataType = '';
|
---|
32 | protected $videoTrainingOperationMetadataType = XPSVideoTrainingOperationMetadata::class;
|
---|
33 | protected $videoTrainingOperationMetadataDataType = '';
|
---|
34 | protected $visionTrainingOperationMetadataType = XPSVisionTrainingOperationMetadata::class;
|
---|
35 | protected $visionTrainingOperationMetadataDataType = '';
|
---|
36 |
|
---|
37 | /**
|
---|
38 | * @param string
|
---|
39 | */
|
---|
40 | public function setExampleCount($exampleCount)
|
---|
41 | {
|
---|
42 | $this->exampleCount = $exampleCount;
|
---|
43 | }
|
---|
44 | /**
|
---|
45 | * @return string
|
---|
46 | */
|
---|
47 | public function getExampleCount()
|
---|
48 | {
|
---|
49 | return $this->exampleCount;
|
---|
50 | }
|
---|
51 | /**
|
---|
52 | * @param XPSReportingMetrics
|
---|
53 | */
|
---|
54 | public function setReportingMetrics(XPSReportingMetrics $reportingMetrics)
|
---|
55 | {
|
---|
56 | $this->reportingMetrics = $reportingMetrics;
|
---|
57 | }
|
---|
58 | /**
|
---|
59 | * @return XPSReportingMetrics
|
---|
60 | */
|
---|
61 | public function getReportingMetrics()
|
---|
62 | {
|
---|
63 | return $this->reportingMetrics;
|
---|
64 | }
|
---|
65 | /**
|
---|
66 | * @param XPSTablesTrainingOperationMetadata
|
---|
67 | */
|
---|
68 | public function setTablesTrainingOperationMetadata(XPSTablesTrainingOperationMetadata $tablesTrainingOperationMetadata)
|
---|
69 | {
|
---|
70 | $this->tablesTrainingOperationMetadata = $tablesTrainingOperationMetadata;
|
---|
71 | }
|
---|
72 | /**
|
---|
73 | * @return XPSTablesTrainingOperationMetadata
|
---|
74 | */
|
---|
75 | public function getTablesTrainingOperationMetadata()
|
---|
76 | {
|
---|
77 | return $this->tablesTrainingOperationMetadata;
|
---|
78 | }
|
---|
79 | /**
|
---|
80 | * @param XPSVideoBatchPredictOperationMetadata
|
---|
81 | */
|
---|
82 | public function setVideoBatchPredictOperationMetadata(XPSVideoBatchPredictOperationMetadata $videoBatchPredictOperationMetadata)
|
---|
83 | {
|
---|
84 | $this->videoBatchPredictOperationMetadata = $videoBatchPredictOperationMetadata;
|
---|
85 | }
|
---|
86 | /**
|
---|
87 | * @return XPSVideoBatchPredictOperationMetadata
|
---|
88 | */
|
---|
89 | public function getVideoBatchPredictOperationMetadata()
|
---|
90 | {
|
---|
91 | return $this->videoBatchPredictOperationMetadata;
|
---|
92 | }
|
---|
93 | /**
|
---|
94 | * @param XPSVideoTrainingOperationMetadata
|
---|
95 | */
|
---|
96 | public function setVideoTrainingOperationMetadata(XPSVideoTrainingOperationMetadata $videoTrainingOperationMetadata)
|
---|
97 | {
|
---|
98 | $this->videoTrainingOperationMetadata = $videoTrainingOperationMetadata;
|
---|
99 | }
|
---|
100 | /**
|
---|
101 | * @return XPSVideoTrainingOperationMetadata
|
---|
102 | */
|
---|
103 | public function getVideoTrainingOperationMetadata()
|
---|
104 | {
|
---|
105 | return $this->videoTrainingOperationMetadata;
|
---|
106 | }
|
---|
107 | /**
|
---|
108 | * @param XPSVisionTrainingOperationMetadata
|
---|
109 | */
|
---|
110 | public function setVisionTrainingOperationMetadata(XPSVisionTrainingOperationMetadata $visionTrainingOperationMetadata)
|
---|
111 | {
|
---|
112 | $this->visionTrainingOperationMetadata = $visionTrainingOperationMetadata;
|
---|
113 | }
|
---|
114 | /**
|
---|
115 | * @return XPSVisionTrainingOperationMetadata
|
---|
116 | */
|
---|
117 | public function getVisionTrainingOperationMetadata()
|
---|
118 | {
|
---|
119 | return $this->visionTrainingOperationMetadata;
|
---|
120 | }
|
---|
121 | }
|
---|
122 |
|
---|
123 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
124 | class_alias(XPSXpsOperationMetadata::class, 'Google_Service_CloudNaturalLanguage_XPSXpsOperationMetadata');
|
---|