Skip to content

Commit b04be81

Browse files
1 parent 4e8497d commit b04be81

File tree

4 files changed

+33
-6
lines changed

4 files changed

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,14 @@ public final class GenericObject extends com.google.api.client.json.GenericJson
143143
@com.google.api.client.util.Key
144144
private Image logo;
145145

146+
/**
147+
* An array of messages displayed in the app. All users of this object will receive its associated
148+
* messages. The maximum number of these fields is 10.
149+
* The value may be {@code null}.
150+
*/
151+
@com.google.api.client.util.Key
152+
private java.util.List<Message> messages;
153+
146154
/**
147155
* The notification settings that are enabled for this object.
148156
* The value may be {@code null}.
@@ -493,6 +501,25 @@ public GenericObject setLogo(Image logo) {
493501
return this;
494502
}
495503

504+
/**
505+
* An array of messages displayed in the app. All users of this object will receive its associated
506+
* messages. The maximum number of these fields is 10.
507+
* @return value or {@code null} for none
508+
*/
509+
public java.util.List<Message> getMessages() {
510+
return messages;
511+
}
512+
513+
/**
514+
* An array of messages displayed in the app. All users of this object will receive its associated
515+
* messages. The maximum number of these fields is 10.
516+
* @param messages messages or {@code null} for none
517+
*/
518+
public GenericObject setMessages(java.util.List<Message> messages) {
519+
this.messages = messages;
520+
return this;
521+
}
522+
496523
/**
497524
* The notification settings that are enabled for this object.
498525
* @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-rev20240723-2.0.0</version>
12-
<name>Google Wallet API v1-rev20240723-2.0.0</name>
11+
<version>v1-rev20240726-2.0.0</version>
12+
<name>Google Wallet API v1-rev20240726-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-rev20240723-2.0.0</version>
25+
<version>v1-rev20240726-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-rev20240723-2.0.0'
38+
implementation 'com.google.apis:google-api-services-walletobjects:v1-rev20240726-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)