Skip to content

Commit 2d72cc4

Browse files
1 parent 15b5e68 commit 2d72cc4

File tree

4 files changed

+63
-6
lines changed

4 files changed

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

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

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@ public final class MediaRequestInfo extends com.google.api.client.json.GenericJs
6767
@com.google.api.client.util.Key
6868
private java.lang.String notificationType;
6969

70+
/**
71+
* The physical headers provided by RequestReceivedParameters in Scotty request. type is
72+
* uploader_service.KeyValuePairs.
73+
* The value may be {@code null}.
74+
*/
75+
@com.google.api.client.util.Key
76+
private java.lang.String physicalHeaders;
77+
7078
/**
7179
* The Scotty request ID.
7280
* The value may be {@code null}.
@@ -188,6 +196,55 @@ public MediaRequestInfo setNotificationType(java.lang.String notificationType) {
188196
return this;
189197
}
190198

199+
/**
200+
* The physical headers provided by RequestReceivedParameters in Scotty request. type is
201+
* uploader_service.KeyValuePairs.
202+
* @see #decodePhysicalHeaders()
203+
* @return value or {@code null} for none
204+
*/
205+
public java.lang.String getPhysicalHeaders() {
206+
return physicalHeaders;
207+
}
208+
209+
/**
210+
* The physical headers provided by RequestReceivedParameters in Scotty request. type is
211+
* uploader_service.KeyValuePairs.
212+
* @see #getPhysicalHeaders()
213+
* @return Base64 decoded value or {@code null} for none
214+
*
215+
* @since 1.14
216+
*/
217+
public byte[] decodePhysicalHeaders() {
218+
return com.google.api.client.util.Base64.decodeBase64(physicalHeaders);
219+
}
220+
221+
/**
222+
* The physical headers provided by RequestReceivedParameters in Scotty request. type is
223+
* uploader_service.KeyValuePairs.
224+
* @see #encodePhysicalHeaders()
225+
* @param physicalHeaders physicalHeaders or {@code null} for none
226+
*/
227+
public MediaRequestInfo setPhysicalHeaders(java.lang.String physicalHeaders) {
228+
this.physicalHeaders = physicalHeaders;
229+
return this;
230+
}
231+
232+
/**
233+
* The physical headers provided by RequestReceivedParameters in Scotty request. type is
234+
* uploader_service.KeyValuePairs.
235+
* @see #setPhysicalHeaders()
236+
*
237+
* <p>
238+
* The value is encoded Base64 or {@code null} for none.
239+
* </p>
240+
*
241+
* @since 1.14
242+
*/
243+
public MediaRequestInfo encodePhysicalHeaders(byte[] physicalHeaders) {
244+
this.physicalHeaders = com.google.api.client.util.Base64.encodeBase64URLSafeString(physicalHeaders);
245+
return this;
246+
}
247+
191248
/**
192249
* The Scotty request ID.
193250
* @return value or {@code null} for none

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-rev20250804-2.0.0</version>
12-
<name>Google Wallet API v1-rev20250804-2.0.0</name>
11+
<version>v1-rev20250909-2.0.0</version>
12+
<name>Google Wallet API v1-rev20250909-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-rev20250804-2.0.0</version>
25+
<version>v1-rev20250909-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-rev20250804-2.0.0'
38+
implementation 'com.google.apis:google-api-services-walletobjects:v1-rev20250909-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)