source: vendor/google/apiclient-services/src/Contentwarehouse/GoogleCloudContentwarehouseV1Document.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 6 weeks ago

Upload project files

  • Property mode set to 100644
File size: 7.2 KB
RevLine 
[e3d4e0a]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\Contentwarehouse;
19
20class GoogleCloudContentwarehouseV1Document extends \Google\Collection
21{
22 protected $collection_key = 'properties';
23 protected $cloudAiDocumentType = GoogleCloudDocumentaiV1Document::class;
24 protected $cloudAiDocumentDataType = '';
25 /**
26 * @var string
27 */
28 public $contentCategory;
29 /**
30 * @var string
31 */
32 public $createTime;
33 /**
34 * @var string
35 */
36 public $creator;
37 /**
38 * @var string
39 */
40 public $displayName;
41 /**
42 * @var string
43 */
44 public $displayUri;
45 /**
46 * @var string
47 */
48 public $dispositionTime;
49 /**
50 * @var string
51 */
52 public $documentSchemaName;
53 /**
54 * @var string
55 */
56 public $inlineRawDocument;
57 /**
58 * @var bool
59 */
60 public $legalHold;
61 /**
62 * @var string
63 */
64 public $name;
65 /**
66 * @var string
67 */
68 public $plainText;
69 protected $propertiesType = GoogleCloudContentwarehouseV1Property::class;
70 protected $propertiesDataType = 'array';
71 /**
72 * @var string
73 */
74 public $rawDocumentFileType;
75 /**
76 * @var string
77 */
78 public $rawDocumentPath;
79 /**
80 * @var string
81 */
82 public $referenceId;
83 /**
84 * @var bool
85 */
86 public $textExtractionDisabled;
87 /**
88 * @var bool
89 */
90 public $textExtractionEnabled;
91 /**
92 * @var string
93 */
94 public $title;
95 /**
96 * @var string
97 */
98 public $updateTime;
99 /**
100 * @var string
101 */
102 public $updater;
103
104 /**
105 * @param GoogleCloudDocumentaiV1Document
106 */
107 public function setCloudAiDocument(GoogleCloudDocumentaiV1Document $cloudAiDocument)
108 {
109 $this->cloudAiDocument = $cloudAiDocument;
110 }
111 /**
112 * @return GoogleCloudDocumentaiV1Document
113 */
114 public function getCloudAiDocument()
115 {
116 return $this->cloudAiDocument;
117 }
118 /**
119 * @param string
120 */
121 public function setContentCategory($contentCategory)
122 {
123 $this->contentCategory = $contentCategory;
124 }
125 /**
126 * @return string
127 */
128 public function getContentCategory()
129 {
130 return $this->contentCategory;
131 }
132 /**
133 * @param string
134 */
135 public function setCreateTime($createTime)
136 {
137 $this->createTime = $createTime;
138 }
139 /**
140 * @return string
141 */
142 public function getCreateTime()
143 {
144 return $this->createTime;
145 }
146 /**
147 * @param string
148 */
149 public function setCreator($creator)
150 {
151 $this->creator = $creator;
152 }
153 /**
154 * @return string
155 */
156 public function getCreator()
157 {
158 return $this->creator;
159 }
160 /**
161 * @param string
162 */
163 public function setDisplayName($displayName)
164 {
165 $this->displayName = $displayName;
166 }
167 /**
168 * @return string
169 */
170 public function getDisplayName()
171 {
172 return $this->displayName;
173 }
174 /**
175 * @param string
176 */
177 public function setDisplayUri($displayUri)
178 {
179 $this->displayUri = $displayUri;
180 }
181 /**
182 * @return string
183 */
184 public function getDisplayUri()
185 {
186 return $this->displayUri;
187 }
188 /**
189 * @param string
190 */
191 public function setDispositionTime($dispositionTime)
192 {
193 $this->dispositionTime = $dispositionTime;
194 }
195 /**
196 * @return string
197 */
198 public function getDispositionTime()
199 {
200 return $this->dispositionTime;
201 }
202 /**
203 * @param string
204 */
205 public function setDocumentSchemaName($documentSchemaName)
206 {
207 $this->documentSchemaName = $documentSchemaName;
208 }
209 /**
210 * @return string
211 */
212 public function getDocumentSchemaName()
213 {
214 return $this->documentSchemaName;
215 }
216 /**
217 * @param string
218 */
219 public function setInlineRawDocument($inlineRawDocument)
220 {
221 $this->inlineRawDocument = $inlineRawDocument;
222 }
223 /**
224 * @return string
225 */
226 public function getInlineRawDocument()
227 {
228 return $this->inlineRawDocument;
229 }
230 /**
231 * @param bool
232 */
233 public function setLegalHold($legalHold)
234 {
235 $this->legalHold = $legalHold;
236 }
237 /**
238 * @return bool
239 */
240 public function getLegalHold()
241 {
242 return $this->legalHold;
243 }
244 /**
245 * @param string
246 */
247 public function setName($name)
248 {
249 $this->name = $name;
250 }
251 /**
252 * @return string
253 */
254 public function getName()
255 {
256 return $this->name;
257 }
258 /**
259 * @param string
260 */
261 public function setPlainText($plainText)
262 {
263 $this->plainText = $plainText;
264 }
265 /**
266 * @return string
267 */
268 public function getPlainText()
269 {
270 return $this->plainText;
271 }
272 /**
273 * @param GoogleCloudContentwarehouseV1Property[]
274 */
275 public function setProperties($properties)
276 {
277 $this->properties = $properties;
278 }
279 /**
280 * @return GoogleCloudContentwarehouseV1Property[]
281 */
282 public function getProperties()
283 {
284 return $this->properties;
285 }
286 /**
287 * @param string
288 */
289 public function setRawDocumentFileType($rawDocumentFileType)
290 {
291 $this->rawDocumentFileType = $rawDocumentFileType;
292 }
293 /**
294 * @return string
295 */
296 public function getRawDocumentFileType()
297 {
298 return $this->rawDocumentFileType;
299 }
300 /**
301 * @param string
302 */
303 public function setRawDocumentPath($rawDocumentPath)
304 {
305 $this->rawDocumentPath = $rawDocumentPath;
306 }
307 /**
308 * @return string
309 */
310 public function getRawDocumentPath()
311 {
312 return $this->rawDocumentPath;
313 }
314 /**
315 * @param string
316 */
317 public function setReferenceId($referenceId)
318 {
319 $this->referenceId = $referenceId;
320 }
321 /**
322 * @return string
323 */
324 public function getReferenceId()
325 {
326 return $this->referenceId;
327 }
328 /**
329 * @param bool
330 */
331 public function setTextExtractionDisabled($textExtractionDisabled)
332 {
333 $this->textExtractionDisabled = $textExtractionDisabled;
334 }
335 /**
336 * @return bool
337 */
338 public function getTextExtractionDisabled()
339 {
340 return $this->textExtractionDisabled;
341 }
342 /**
343 * @param bool
344 */
345 public function setTextExtractionEnabled($textExtractionEnabled)
346 {
347 $this->textExtractionEnabled = $textExtractionEnabled;
348 }
349 /**
350 * @return bool
351 */
352 public function getTextExtractionEnabled()
353 {
354 return $this->textExtractionEnabled;
355 }
356 /**
357 * @param string
358 */
359 public function setTitle($title)
360 {
361 $this->title = $title;
362 }
363 /**
364 * @return string
365 */
366 public function getTitle()
367 {
368 return $this->title;
369 }
370 /**
371 * @param string
372 */
373 public function setUpdateTime($updateTime)
374 {
375 $this->updateTime = $updateTime;
376 }
377 /**
378 * @return string
379 */
380 public function getUpdateTime()
381 {
382 return $this->updateTime;
383 }
384 /**
385 * @param string
386 */
387 public function setUpdater($updater)
388 {
389 $this->updater = $updater;
390 }
391 /**
392 * @return string
393 */
394 public function getUpdater()
395 {
396 return $this->updater;
397 }
398}
399
400// Adding a class alias for backwards compatibility with the previous class name.
401class_alias(GoogleCloudContentwarehouseV1Document::class, 'Google_Service_Contentwarehouse_GoogleCloudContentwarehouseV1Document');
Note: See TracBrowser for help on using the repository browser.