You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-walletobjects/v1/2.0.0/com/google/api/services/walletobjects/model/GenericObject.java
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,14 @@ public final class GenericObject extends com.google.api.client.json.GenericJson
143
143
@com.google.api.client.util.Key
144
144
privateImagelogo;
145
145
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
+
privatejava.util.List<Message> messages;
153
+
146
154
/**
147
155
* The notification settings that are enabled for this object.
148
156
* The value may be {@code null}.
@@ -493,6 +501,25 @@ public GenericObject setLogo(Image logo) {
493
501
returnthis;
494
502
}
495
503
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
+
publicjava.util.List<Message> getMessages() {
510
+
returnmessages;
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
0 commit comments