source: vendor/google/apiclient-services/src/Document/GoogleCloudDocumentaiV1ProcessorVersion.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.6 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\Document;
19
20class GoogleCloudDocumentaiV1ProcessorVersion extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $createTime;
26 protected $deprecationInfoType = GoogleCloudDocumentaiV1ProcessorVersionDeprecationInfo::class;
27 protected $deprecationInfoDataType = '';
28 /**
29 * @var string
30 */
31 public $displayName;
32 protected $documentSchemaType = GoogleCloudDocumentaiV1DocumentSchema::class;
33 protected $documentSchemaDataType = '';
34 protected $genAiModelInfoType = GoogleCloudDocumentaiV1ProcessorVersionGenAiModelInfo::class;
35 protected $genAiModelInfoDataType = '';
36 /**
37 * @var bool
38 */
39 public $googleManaged;
40 /**
41 * @var string
42 */
43 public $kmsKeyName;
44 /**
45 * @var string
46 */
47 public $kmsKeyVersionName;
48 protected $latestEvaluationType = GoogleCloudDocumentaiV1EvaluationReference::class;
49 protected $latestEvaluationDataType = '';
50 /**
51 * @var string
52 */
53 public $modelType;
54 /**
55 * @var string
56 */
57 public $name;
58 /**
59 * @var bool
60 */
61 public $satisfiesPzi;
62 /**
63 * @var bool
64 */
65 public $satisfiesPzs;
66 /**
67 * @var string
68 */
69 public $state;
70
71 /**
72 * @param string
73 */
74 public function setCreateTime($createTime)
75 {
76 $this->createTime = $createTime;
77 }
78 /**
79 * @return string
80 */
81 public function getCreateTime()
82 {
83 return $this->createTime;
84 }
85 /**
86 * @param GoogleCloudDocumentaiV1ProcessorVersionDeprecationInfo
87 */
88 public function setDeprecationInfo(GoogleCloudDocumentaiV1ProcessorVersionDeprecationInfo $deprecationInfo)
89 {
90 $this->deprecationInfo = $deprecationInfo;
91 }
92 /**
93 * @return GoogleCloudDocumentaiV1ProcessorVersionDeprecationInfo
94 */
95 public function getDeprecationInfo()
96 {
97 return $this->deprecationInfo;
98 }
99 /**
100 * @param string
101 */
102 public function setDisplayName($displayName)
103 {
104 $this->displayName = $displayName;
105 }
106 /**
107 * @return string
108 */
109 public function getDisplayName()
110 {
111 return $this->displayName;
112 }
113 /**
114 * @param GoogleCloudDocumentaiV1DocumentSchema
115 */
116 public function setDocumentSchema(GoogleCloudDocumentaiV1DocumentSchema $documentSchema)
117 {
118 $this->documentSchema = $documentSchema;
119 }
120 /**
121 * @return GoogleCloudDocumentaiV1DocumentSchema
122 */
123 public function getDocumentSchema()
124 {
125 return $this->documentSchema;
126 }
127 /**
128 * @param GoogleCloudDocumentaiV1ProcessorVersionGenAiModelInfo
129 */
130 public function setGenAiModelInfo(GoogleCloudDocumentaiV1ProcessorVersionGenAiModelInfo $genAiModelInfo)
131 {
132 $this->genAiModelInfo = $genAiModelInfo;
133 }
134 /**
135 * @return GoogleCloudDocumentaiV1ProcessorVersionGenAiModelInfo
136 */
137 public function getGenAiModelInfo()
138 {
139 return $this->genAiModelInfo;
140 }
141 /**
142 * @param bool
143 */
144 public function setGoogleManaged($googleManaged)
145 {
146 $this->googleManaged = $googleManaged;
147 }
148 /**
149 * @return bool
150 */
151 public function getGoogleManaged()
152 {
153 return $this->googleManaged;
154 }
155 /**
156 * @param string
157 */
158 public function setKmsKeyName($kmsKeyName)
159 {
160 $this->kmsKeyName = $kmsKeyName;
161 }
162 /**
163 * @return string
164 */
165 public function getKmsKeyName()
166 {
167 return $this->kmsKeyName;
168 }
169 /**
170 * @param string
171 */
172 public function setKmsKeyVersionName($kmsKeyVersionName)
173 {
174 $this->kmsKeyVersionName = $kmsKeyVersionName;
175 }
176 /**
177 * @return string
178 */
179 public function getKmsKeyVersionName()
180 {
181 return $this->kmsKeyVersionName;
182 }
183 /**
184 * @param GoogleCloudDocumentaiV1EvaluationReference
185 */
186 public function setLatestEvaluation(GoogleCloudDocumentaiV1EvaluationReference $latestEvaluation)
187 {
188 $this->latestEvaluation = $latestEvaluation;
189 }
190 /**
191 * @return GoogleCloudDocumentaiV1EvaluationReference
192 */
193 public function getLatestEvaluation()
194 {
195 return $this->latestEvaluation;
196 }
197 /**
198 * @param string
199 */
200 public function setModelType($modelType)
201 {
202 $this->modelType = $modelType;
203 }
204 /**
205 * @return string
206 */
207 public function getModelType()
208 {
209 return $this->modelType;
210 }
211 /**
212 * @param string
213 */
214 public function setName($name)
215 {
216 $this->name = $name;
217 }
218 /**
219 * @return string
220 */
221 public function getName()
222 {
223 return $this->name;
224 }
225 /**
226 * @param bool
227 */
228 public function setSatisfiesPzi($satisfiesPzi)
229 {
230 $this->satisfiesPzi = $satisfiesPzi;
231 }
232 /**
233 * @return bool
234 */
235 public function getSatisfiesPzi()
236 {
237 return $this->satisfiesPzi;
238 }
239 /**
240 * @param bool
241 */
242 public function setSatisfiesPzs($satisfiesPzs)
243 {
244 $this->satisfiesPzs = $satisfiesPzs;
245 }
246 /**
247 * @return bool
248 */
249 public function getSatisfiesPzs()
250 {
251 return $this->satisfiesPzs;
252 }
253 /**
254 * @param string
255 */
256 public function setState($state)
257 {
258 $this->state = $state;
259 }
260 /**
261 * @return string
262 */
263 public function getState()
264 {
265 return $this->state;
266 }
267}
268
269// Adding a class alias for backwards compatibility with the previous class name.
270class_alias(GoogleCloudDocumentaiV1ProcessorVersion::class, 'Google_Service_Document_GoogleCloudDocumentaiV1ProcessorVersion');
Note: See TracBrowser for help on using the repository browser.