source: vendor/google/apiclient-services/src/Document/GoogleCloudDocumentaiV1ProcessRequest.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 3.7 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 GoogleCloudDocumentaiV1ProcessRequest extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $fieldMask;
26 protected $gcsDocumentType = GoogleCloudDocumentaiV1GcsDocument::class;
27 protected $gcsDocumentDataType = '';
28 /**
29 * @var bool
30 */
31 public $imagelessMode;
32 protected $inlineDocumentType = GoogleCloudDocumentaiV1Document::class;
33 protected $inlineDocumentDataType = '';
34 /**
35 * @var string[]
36 */
37 public $labels;
38 protected $processOptionsType = GoogleCloudDocumentaiV1ProcessOptions::class;
39 protected $processOptionsDataType = '';
40 protected $rawDocumentType = GoogleCloudDocumentaiV1RawDocument::class;
41 protected $rawDocumentDataType = '';
42 /**
43 * @var bool
44 */
45 public $skipHumanReview;
46
47 /**
48 * @param string
49 */
50 public function setFieldMask($fieldMask)
51 {
52 $this->fieldMask = $fieldMask;
53 }
54 /**
55 * @return string
56 */
57 public function getFieldMask()
58 {
59 return $this->fieldMask;
60 }
61 /**
62 * @param GoogleCloudDocumentaiV1GcsDocument
63 */
64 public function setGcsDocument(GoogleCloudDocumentaiV1GcsDocument $gcsDocument)
65 {
66 $this->gcsDocument = $gcsDocument;
67 }
68 /**
69 * @return GoogleCloudDocumentaiV1GcsDocument
70 */
71 public function getGcsDocument()
72 {
73 return $this->gcsDocument;
74 }
75 /**
76 * @param bool
77 */
78 public function setImagelessMode($imagelessMode)
79 {
80 $this->imagelessMode = $imagelessMode;
81 }
82 /**
83 * @return bool
84 */
85 public function getImagelessMode()
86 {
87 return $this->imagelessMode;
88 }
89 /**
90 * @param GoogleCloudDocumentaiV1Document
91 */
92 public function setInlineDocument(GoogleCloudDocumentaiV1Document $inlineDocument)
93 {
94 $this->inlineDocument = $inlineDocument;
95 }
96 /**
97 * @return GoogleCloudDocumentaiV1Document
98 */
99 public function getInlineDocument()
100 {
101 return $this->inlineDocument;
102 }
103 /**
104 * @param string[]
105 */
106 public function setLabels($labels)
107 {
108 $this->labels = $labels;
109 }
110 /**
111 * @return string[]
112 */
113 public function getLabels()
114 {
115 return $this->labels;
116 }
117 /**
118 * @param GoogleCloudDocumentaiV1ProcessOptions
119 */
120 public function setProcessOptions(GoogleCloudDocumentaiV1ProcessOptions $processOptions)
121 {
122 $this->processOptions = $processOptions;
123 }
124 /**
125 * @return GoogleCloudDocumentaiV1ProcessOptions
126 */
127 public function getProcessOptions()
128 {
129 return $this->processOptions;
130 }
131 /**
132 * @param GoogleCloudDocumentaiV1RawDocument
133 */
134 public function setRawDocument(GoogleCloudDocumentaiV1RawDocument $rawDocument)
135 {
136 $this->rawDocument = $rawDocument;
137 }
138 /**
139 * @return GoogleCloudDocumentaiV1RawDocument
140 */
141 public function getRawDocument()
142 {
143 return $this->rawDocument;
144 }
145 /**
146 * @param bool
147 */
148 public function setSkipHumanReview($skipHumanReview)
149 {
150 $this->skipHumanReview = $skipHumanReview;
151 }
152 /**
153 * @return bool
154 */
155 public function getSkipHumanReview()
156 {
157 return $this->skipHumanReview;
158 }
159}
160
161// Adding a class alias for backwards compatibility with the previous class name.
162class_alias(GoogleCloudDocumentaiV1ProcessRequest::class, 'Google_Service_Document_GoogleCloudDocumentaiV1ProcessRequest');
Note: See TracBrowser for help on using the repository browser.