Skip to content

Commit 74d1feb

Browse files
1 parent ccb4bd0 commit 74d1feb

File tree

45 files changed

+7096
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+7096
-9
lines changed

clients/google-api-services-documentai/v1beta3/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-documentai</artifactId>
25-
<version>v1beta3-rev20251013-2.0.0</version>
25+
<version>v1beta3-rev20251020-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-documentai:v1beta3-rev20251013-2.0.0'
38+
implementation 'com.google.apis:google-api-services-documentai:v1beta3-rev20251020-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-documentai/v1beta3/2.0.0/com/google/api/services/documentai/v1beta3/Document.java

Lines changed: 1755 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.documentai.v1beta3.model;
18+
19+
/**
20+
* The schema defines the output of the processed document by a processor.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Document AI API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleCloudDocumentaiUiv1beta3DocumentSchema extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Description of the schema.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String description;
39+
40+
/**
41+
* Display name to show to users.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String displayName;
46+
47+
/**
48+
* Entity types of the schema.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.util.List<GoogleCloudDocumentaiUiv1beta3DocumentSchemaEntityType> entityTypes;
53+
54+
/**
55+
* Metadata of the schema.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private GoogleCloudDocumentaiUiv1beta3DocumentSchemaMetadata metadata;
60+
61+
/**
62+
* Description of the schema.
63+
* @return value or {@code null} for none
64+
*/
65+
public java.lang.String getDescription() {
66+
return description;
67+
}
68+
69+
/**
70+
* Description of the schema.
71+
* @param description description or {@code null} for none
72+
*/
73+
public GoogleCloudDocumentaiUiv1beta3DocumentSchema setDescription(java.lang.String description) {
74+
this.description = description;
75+
return this;
76+
}
77+
78+
/**
79+
* Display name to show to users.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.String getDisplayName() {
83+
return displayName;
84+
}
85+
86+
/**
87+
* Display name to show to users.
88+
* @param displayName displayName or {@code null} for none
89+
*/
90+
public GoogleCloudDocumentaiUiv1beta3DocumentSchema setDisplayName(java.lang.String displayName) {
91+
this.displayName = displayName;
92+
return this;
93+
}
94+
95+
/**
96+
* Entity types of the schema.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.util.List<GoogleCloudDocumentaiUiv1beta3DocumentSchemaEntityType> getEntityTypes() {
100+
return entityTypes;
101+
}
102+
103+
/**
104+
* Entity types of the schema.
105+
* @param entityTypes entityTypes or {@code null} for none
106+
*/
107+
public GoogleCloudDocumentaiUiv1beta3DocumentSchema setEntityTypes(java.util.List<GoogleCloudDocumentaiUiv1beta3DocumentSchemaEntityType> entityTypes) {
108+
this.entityTypes = entityTypes;
109+
return this;
110+
}
111+
112+
/**
113+
* Metadata of the schema.
114+
* @return value or {@code null} for none
115+
*/
116+
public GoogleCloudDocumentaiUiv1beta3DocumentSchemaMetadata getMetadata() {
117+
return metadata;
118+
}
119+
120+
/**
121+
* Metadata of the schema.
122+
* @param metadata metadata or {@code null} for none
123+
*/
124+
public GoogleCloudDocumentaiUiv1beta3DocumentSchema setMetadata(GoogleCloudDocumentaiUiv1beta3DocumentSchemaMetadata metadata) {
125+
this.metadata = metadata;
126+
return this;
127+
}
128+
129+
@Override
130+
public GoogleCloudDocumentaiUiv1beta3DocumentSchema set(String fieldName, Object value) {
131+
return (GoogleCloudDocumentaiUiv1beta3DocumentSchema) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public GoogleCloudDocumentaiUiv1beta3DocumentSchema clone() {
136+
return (GoogleCloudDocumentaiUiv1beta3DocumentSchema) super.clone();
137+
}
138+
139+
}

0 commit comments

Comments
 (0)