Skip to content

Commit 548745d

Browse files
1 parent 22bb37b commit 548745d

File tree

4 files changed

+87
-6
lines changed

4 files changed

+87
-6
lines changed

clients/google-api-services-walletobjects/v1/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-walletobjects</artifactId>
25-
<version>v1-rev20260327-2.0.0</version>
25+
<version>v1-rev20260408-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-walletobjects:v1-rev20260327-2.0.0'
38+
implementation 'com.google.apis:google-api-services-walletobjects:v1-rev20260408-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-walletobjects/v1/2.0.0/com/google/api/services/walletobjects/model/ContentTypeInfo.java

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ public final class ContentTypeInfo extends com.google.api.client.json.GenericJso
5555
@com.google.api.client.util.Key
5656
private java.lang.String fromFileName;
5757

58+
/**
59+
* The content type of the file detected by Fusion ID. go/fusionid
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.lang.String fromFusionId;
64+
5865
/**
5966
* The content type of the file as specified in the request headers, multipart headers, or RUPIO
6067
* start request.
@@ -72,6 +79,14 @@ public final class ContentTypeInfo extends com.google.api.client.json.GenericJso
7279
@com.google.api.client.util.Key
7380
private java.lang.String fromUrlPath;
7481

82+
/**
83+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
84+
* set if from_fusion_id is set.
85+
* The value may be {@code null}.
86+
*/
87+
@com.google.api.client.util.Key
88+
private java.lang.String fusionIdDetectionMetadata;
89+
7590
/**
7691
* Scotty's best guess of what the content type of the file is.
7792
* @return value or {@code null} for none
@@ -127,6 +142,23 @@ public ContentTypeInfo setFromFileName(java.lang.String fromFileName) {
127142
return this;
128143
}
129144

145+
/**
146+
* The content type of the file detected by Fusion ID. go/fusionid
147+
* @return value or {@code null} for none
148+
*/
149+
public java.lang.String getFromFusionId() {
150+
return fromFusionId;
151+
}
152+
153+
/**
154+
* The content type of the file detected by Fusion ID. go/fusionid
155+
* @param fromFusionId fromFusionId or {@code null} for none
156+
*/
157+
public ContentTypeInfo setFromFusionId(java.lang.String fromFusionId) {
158+
this.fromFusionId = fromFusionId;
159+
return this;
160+
}
161+
130162
/**
131163
* The content type of the file as specified in the request headers, multipart headers, or RUPIO
132164
* start request.
@@ -167,6 +199,55 @@ public ContentTypeInfo setFromUrlPath(java.lang.String fromUrlPath) {
167199
return this;
168200
}
169201

202+
/**
203+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
204+
* set if from_fusion_id is set.
205+
* @see #decodeFusionIdDetectionMetadata()
206+
* @return value or {@code null} for none
207+
*/
208+
public java.lang.String getFusionIdDetectionMetadata() {
209+
return fusionIdDetectionMetadata;
210+
}
211+
212+
/**
213+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
214+
* set if from_fusion_id is set.
215+
* @see #getFusionIdDetectionMetadata()
216+
* @return Base64 decoded value or {@code null} for none
217+
*
218+
* @since 1.14
219+
*/
220+
public byte[] decodeFusionIdDetectionMetadata() {
221+
return com.google.api.client.util.Base64.decodeBase64(fusionIdDetectionMetadata);
222+
}
223+
224+
/**
225+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
226+
* set if from_fusion_id is set.
227+
* @see #encodeFusionIdDetectionMetadata()
228+
* @param fusionIdDetectionMetadata fusionIdDetectionMetadata or {@code null} for none
229+
*/
230+
public ContentTypeInfo setFusionIdDetectionMetadata(java.lang.String fusionIdDetectionMetadata) {
231+
this.fusionIdDetectionMetadata = fusionIdDetectionMetadata;
232+
return this;
233+
}
234+
235+
/**
236+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
237+
* set if from_fusion_id is set.
238+
* @see #setFusionIdDetectionMetadata()
239+
*
240+
* <p>
241+
* The value is encoded Base64 or {@code null} for none.
242+
* </p>
243+
*
244+
* @since 1.14
245+
*/
246+
public ContentTypeInfo encodeFusionIdDetectionMetadata(byte[] fusionIdDetectionMetadata) {
247+
this.fusionIdDetectionMetadata = com.google.api.client.util.Base64.encodeBase64URLSafeString(fusionIdDetectionMetadata);
248+
return this;
249+
}
250+
170251
@Override
171252
public ContentTypeInfo set(String fieldName, Object value) {
172253
return (ContentTypeInfo) super.set(fieldName, value);

clients/google-api-services-walletobjects/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-walletobjects</artifactId>
11-
<version>v1-rev20260327-2.0.0</version>
12-
<name>Google Wallet API v1-rev20260327-2.0.0</name>
11+
<version>v1-rev20260408-2.0.0</version>
12+
<name>Google Wallet API v1-rev20260408-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-walletobjects/v1/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-walletobjects</artifactId>
25-
<version>v1-rev20260327-2.0.0</version>
25+
<version>v1-rev20260408-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-walletobjects:v1-rev20260327-2.0.0'
38+
implementation 'com.google.apis:google-api-services-walletobjects:v1-rev20260408-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)