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\Document;
|
---|
19 |
|
---|
20 | class GoogleCloudDocumentaiV1beta3Dataset extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $documentWarehouseConfigType = GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig::class;
|
---|
23 | protected $documentWarehouseConfigDataType = '';
|
---|
24 | protected $gcsManagedConfigType = GoogleCloudDocumentaiV1beta3DatasetGCSManagedConfig::class;
|
---|
25 | protected $gcsManagedConfigDataType = '';
|
---|
26 | /**
|
---|
27 | * @var string
|
---|
28 | */
|
---|
29 | public $name;
|
---|
30 | /**
|
---|
31 | * @var bool
|
---|
32 | */
|
---|
33 | public $satisfiesPzi;
|
---|
34 | /**
|
---|
35 | * @var bool
|
---|
36 | */
|
---|
37 | public $satisfiesPzs;
|
---|
38 | protected $spannerIndexingConfigType = GoogleCloudDocumentaiV1beta3DatasetSpannerIndexingConfig::class;
|
---|
39 | protected $spannerIndexingConfigDataType = '';
|
---|
40 | /**
|
---|
41 | * @var string
|
---|
42 | */
|
---|
43 | public $state;
|
---|
44 | protected $unmanagedDatasetConfigType = GoogleCloudDocumentaiV1beta3DatasetUnmanagedDatasetConfig::class;
|
---|
45 | protected $unmanagedDatasetConfigDataType = '';
|
---|
46 |
|
---|
47 | /**
|
---|
48 | * @param GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig
|
---|
49 | */
|
---|
50 | public function setDocumentWarehouseConfig(GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig $documentWarehouseConfig)
|
---|
51 | {
|
---|
52 | $this->documentWarehouseConfig = $documentWarehouseConfig;
|
---|
53 | }
|
---|
54 | /**
|
---|
55 | * @return GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig
|
---|
56 | */
|
---|
57 | public function getDocumentWarehouseConfig()
|
---|
58 | {
|
---|
59 | return $this->documentWarehouseConfig;
|
---|
60 | }
|
---|
61 | /**
|
---|
62 | * @param GoogleCloudDocumentaiV1beta3DatasetGCSManagedConfig
|
---|
63 | */
|
---|
64 | public function setGcsManagedConfig(GoogleCloudDocumentaiV1beta3DatasetGCSManagedConfig $gcsManagedConfig)
|
---|
65 | {
|
---|
66 | $this->gcsManagedConfig = $gcsManagedConfig;
|
---|
67 | }
|
---|
68 | /**
|
---|
69 | * @return GoogleCloudDocumentaiV1beta3DatasetGCSManagedConfig
|
---|
70 | */
|
---|
71 | public function getGcsManagedConfig()
|
---|
72 | {
|
---|
73 | return $this->gcsManagedConfig;
|
---|
74 | }
|
---|
75 | /**
|
---|
76 | * @param string
|
---|
77 | */
|
---|
78 | public function setName($name)
|
---|
79 | {
|
---|
80 | $this->name = $name;
|
---|
81 | }
|
---|
82 | /**
|
---|
83 | * @return string
|
---|
84 | */
|
---|
85 | public function getName()
|
---|
86 | {
|
---|
87 | return $this->name;
|
---|
88 | }
|
---|
89 | /**
|
---|
90 | * @param bool
|
---|
91 | */
|
---|
92 | public function setSatisfiesPzi($satisfiesPzi)
|
---|
93 | {
|
---|
94 | $this->satisfiesPzi = $satisfiesPzi;
|
---|
95 | }
|
---|
96 | /**
|
---|
97 | * @return bool
|
---|
98 | */
|
---|
99 | public function getSatisfiesPzi()
|
---|
100 | {
|
---|
101 | return $this->satisfiesPzi;
|
---|
102 | }
|
---|
103 | /**
|
---|
104 | * @param bool
|
---|
105 | */
|
---|
106 | public function setSatisfiesPzs($satisfiesPzs)
|
---|
107 | {
|
---|
108 | $this->satisfiesPzs = $satisfiesPzs;
|
---|
109 | }
|
---|
110 | /**
|
---|
111 | * @return bool
|
---|
112 | */
|
---|
113 | public function getSatisfiesPzs()
|
---|
114 | {
|
---|
115 | return $this->satisfiesPzs;
|
---|
116 | }
|
---|
117 | /**
|
---|
118 | * @param GoogleCloudDocumentaiV1beta3DatasetSpannerIndexingConfig
|
---|
119 | */
|
---|
120 | public function setSpannerIndexingConfig(GoogleCloudDocumentaiV1beta3DatasetSpannerIndexingConfig $spannerIndexingConfig)
|
---|
121 | {
|
---|
122 | $this->spannerIndexingConfig = $spannerIndexingConfig;
|
---|
123 | }
|
---|
124 | /**
|
---|
125 | * @return GoogleCloudDocumentaiV1beta3DatasetSpannerIndexingConfig
|
---|
126 | */
|
---|
127 | public function getSpannerIndexingConfig()
|
---|
128 | {
|
---|
129 | return $this->spannerIndexingConfig;
|
---|
130 | }
|
---|
131 | /**
|
---|
132 | * @param string
|
---|
133 | */
|
---|
134 | public function setState($state)
|
---|
135 | {
|
---|
136 | $this->state = $state;
|
---|
137 | }
|
---|
138 | /**
|
---|
139 | * @return string
|
---|
140 | */
|
---|
141 | public function getState()
|
---|
142 | {
|
---|
143 | return $this->state;
|
---|
144 | }
|
---|
145 | /**
|
---|
146 | * @param GoogleCloudDocumentaiV1beta3DatasetUnmanagedDatasetConfig
|
---|
147 | */
|
---|
148 | public function setUnmanagedDatasetConfig(GoogleCloudDocumentaiV1beta3DatasetUnmanagedDatasetConfig $unmanagedDatasetConfig)
|
---|
149 | {
|
---|
150 | $this->unmanagedDatasetConfig = $unmanagedDatasetConfig;
|
---|
151 | }
|
---|
152 | /**
|
---|
153 | * @return GoogleCloudDocumentaiV1beta3DatasetUnmanagedDatasetConfig
|
---|
154 | */
|
---|
155 | public function getUnmanagedDatasetConfig()
|
---|
156 | {
|
---|
157 | return $this->unmanagedDatasetConfig;
|
---|
158 | }
|
---|
159 | }
|
---|
160 |
|
---|
161 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
162 | class_alias(GoogleCloudDocumentaiV1beta3Dataset::class, 'Google_Service_Document_GoogleCloudDocumentaiV1beta3Dataset');
|
---|