Skip to content

Commit 0c185ae

Browse files
1 parent fb04c2b commit 0c185ae

File tree

15 files changed

+459
-6
lines changed

15 files changed

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

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,17 @@ public final class EventTicketClass extends com.google.api.client.json.GenericJs
301301
@com.google.api.client.util.Key
302302
private java.lang.String multipleDevicesAndHoldersAllowedStatus;
303303

304+
/**
305+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
306+
* will attempt to trigger a field update notification to users. These notifications will only be
307+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
308+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
309+
* otherwise a notification will not be triggered.
310+
* The value may be {@code null}.
311+
*/
312+
@com.google.api.client.util.Key
313+
private java.lang.String notifyPreference;
314+
304315
/**
305316
* Identifies which redemption issuers can redeem the pass over Smart Tap. Redemption issuers are
306317
* identified by their issuer ID. Redemption issuers must have at least one Smart Tap key
@@ -1061,6 +1072,31 @@ public EventTicketClass setMultipleDevicesAndHoldersAllowedStatus(java.lang.Stri
10611072
return this;
10621073
}
10631074

1075+
/**
1076+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
1077+
* will attempt to trigger a field update notification to users. These notifications will only be
1078+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
1079+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
1080+
* otherwise a notification will not be triggered.
1081+
* @return value or {@code null} for none
1082+
*/
1083+
public java.lang.String getNotifyPreference() {
1084+
return notifyPreference;
1085+
}
1086+
1087+
/**
1088+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
1089+
* will attempt to trigger a field update notification to users. These notifications will only be
1090+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
1091+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
1092+
* otherwise a notification will not be triggered.
1093+
* @param notifyPreference notifyPreference or {@code null} for none
1094+
*/
1095+
public EventTicketClass setNotifyPreference(java.lang.String notifyPreference) {
1096+
this.notifyPreference = notifyPreference;
1097+
return this;
1098+
}
1099+
10641100
/**
10651101
* Identifies which redemption issuers can redeem the pass over Smart Tap. Redemption issuers are
10661102
* identified by their issuer ID. Redemption issuers must have at least one Smart Tap key

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

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,18 @@ public final class EventTicketObject extends com.google.api.client.json.GenericJ
199199
@com.google.api.client.util.Key
200200
private java.util.List<Message> messages;
201201

202+
/**
203+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
204+
* we will attempt to trigger a field update notification to users. These notifications will only
205+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
206+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
207+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
208+
* triggered.
209+
* The value may be {@code null}.
210+
*/
211+
@com.google.api.client.util.Key
212+
private java.lang.String notifyPreference;
213+
202214
/**
203215
* Pass constraints for the object. Includes limiting NFC and screenshot behaviors.
204216
* The value may be {@code null}.
@@ -708,6 +720,33 @@ public EventTicketObject setMessages(java.util.List<Message> messages) {
708720
return this;
709721
}
710722

723+
/**
724+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
725+
* we will attempt to trigger a field update notification to users. These notifications will only
726+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
727+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
728+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
729+
* triggered.
730+
* @return value or {@code null} for none
731+
*/
732+
public java.lang.String getNotifyPreference() {
733+
return notifyPreference;
734+
}
735+
736+
/**
737+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
738+
* we will attempt to trigger a field update notification to users. These notifications will only
739+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
740+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
741+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
742+
* triggered.
743+
* @param notifyPreference notifyPreference or {@code null} for none
744+
*/
745+
public EventTicketObject setNotifyPreference(java.lang.String notifyPreference) {
746+
this.notifyPreference = notifyPreference;
747+
return this;
748+
}
749+
711750
/**
712751
* Pass constraints for the object. Includes limiting NFC and screenshot behaviors.
713752
* @return value or {@code null} for none

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,17 @@ public final class FlightClass extends com.google.api.client.json.GenericJson {
299299
@com.google.api.client.util.Key
300300
private java.lang.String multipleDevicesAndHoldersAllowedStatus;
301301

302+
/**
303+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
304+
* will attempt to trigger a field update notification to users. These notifications will only be
305+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
306+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
307+
* otherwise a notification will not be triggered.
308+
* The value may be {@code null}.
309+
*/
310+
@com.google.api.client.util.Key
311+
private java.lang.String notifyPreference;
312+
302313
/**
303314
* Required. Origin airport.
304315
* The value may be {@code null}.
@@ -1011,6 +1022,31 @@ public FlightClass setMultipleDevicesAndHoldersAllowedStatus(java.lang.String mu
10111022
return this;
10121023
}
10131024

1025+
/**
1026+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
1027+
* will attempt to trigger a field update notification to users. These notifications will only be
1028+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
1029+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
1030+
* otherwise a notification will not be triggered.
1031+
* @return value or {@code null} for none
1032+
*/
1033+
public java.lang.String getNotifyPreference() {
1034+
return notifyPreference;
1035+
}
1036+
1037+
/**
1038+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
1039+
* will attempt to trigger a field update notification to users. These notifications will only be
1040+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
1041+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
1042+
* otherwise a notification will not be triggered.
1043+
* @param notifyPreference notifyPreference or {@code null} for none
1044+
*/
1045+
public FlightClass setNotifyPreference(java.lang.String notifyPreference) {
1046+
this.notifyPreference = notifyPreference;
1047+
return this;
1048+
}
1049+
10141050
/**
10151051
* Required. Origin airport.
10161052
* @return value or {@code null} for none

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

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,18 @@ public final class FlightObject extends com.google.api.client.json.GenericJson {
189189
@com.google.api.client.util.Key
190190
private java.util.List<Message> messages;
191191

192+
/**
193+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
194+
* we will attempt to trigger a field update notification to users. These notifications will only
195+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
196+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
197+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
198+
* triggered.
199+
* The value may be {@code null}.
200+
*/
201+
@com.google.api.client.util.Key
202+
private java.lang.String notifyPreference;
203+
192204
/**
193205
* Pass constraints for the object. Includes limiting NFC and screenshot behaviors.
194206
* The value may be {@code null}.
@@ -658,6 +670,33 @@ public FlightObject setMessages(java.util.List<Message> messages) {
658670
return this;
659671
}
660672

673+
/**
674+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
675+
* we will attempt to trigger a field update notification to users. These notifications will only
676+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
677+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
678+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
679+
* triggered.
680+
* @return value or {@code null} for none
681+
*/
682+
public java.lang.String getNotifyPreference() {
683+
return notifyPreference;
684+
}
685+
686+
/**
687+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
688+
* we will attempt to trigger a field update notification to users. These notifications will only
689+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
690+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
691+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
692+
* triggered.
693+
* @param notifyPreference notifyPreference or {@code null} for none
694+
*/
695+
public FlightObject setNotifyPreference(java.lang.String notifyPreference) {
696+
this.notifyPreference = notifyPreference;
697+
return this;
698+
}
699+
661700
/**
662701
* Pass constraints for the object. Includes limiting NFC and screenshot behaviors.
663702
* @return value or {@code null} for none

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,17 @@ public final class GiftCardClass extends com.google.api.client.json.GenericJson
243243
@com.google.api.client.util.Key
244244
private java.lang.String multipleDevicesAndHoldersAllowedStatus;
245245

246+
/**
247+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
248+
* will attempt to trigger a field update notification to users. These notifications will only be
249+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
250+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
251+
* otherwise a notification will not be triggered.
252+
* The value may be {@code null}.
253+
*/
254+
@com.google.api.client.util.Key
255+
private java.lang.String notifyPreference;
256+
246257
/**
247258
* The label to display for the PIN, such as "4-digit PIN".
248259
* The value may be {@code null}.
@@ -850,6 +861,31 @@ public GiftCardClass setMultipleDevicesAndHoldersAllowedStatus(java.lang.String
850861
return this;
851862
}
852863

864+
/**
865+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
866+
* will attempt to trigger a field update notification to users. These notifications will only be
867+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
868+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
869+
* otherwise a notification will not be triggered.
870+
* @return value or {@code null} for none
871+
*/
872+
public java.lang.String getNotifyPreference() {
873+
return notifyPreference;
874+
}
875+
876+
/**
877+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
878+
* will attempt to trigger a field update notification to users. These notifications will only be
879+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
880+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
881+
* otherwise a notification will not be triggered.
882+
* @param notifyPreference notifyPreference or {@code null} for none
883+
*/
884+
public GiftCardClass setNotifyPreference(java.lang.String notifyPreference) {
885+
this.notifyPreference = notifyPreference;
886+
return this;
887+
}
888+
853889
/**
854890
* The label to display for the PIN, such as "4-digit PIN".
855891
* @return value or {@code null} for none

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

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,18 @@ public final class GiftCardObject extends com.google.api.client.json.GenericJson
201201
@com.google.api.client.util.Key
202202
private java.util.List<Message> messages;
203203

204+
/**
205+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
206+
* we will attempt to trigger a field update notification to users. These notifications will only
207+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
208+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
209+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
210+
* triggered.
211+
* The value may be {@code null}.
212+
*/
213+
@com.google.api.client.util.Key
214+
private java.lang.String notifyPreference;
215+
204216
/**
205217
* Pass constraints for the object. Includes limiting NFC and screenshot behaviors.
206218
* The value may be {@code null}.
@@ -685,6 +697,33 @@ public GiftCardObject setMessages(java.util.List<Message> messages) {
685697
return this;
686698
}
687699

700+
/**
701+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
702+
* we will attempt to trigger a field update notification to users. These notifications will only
703+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
704+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
705+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
706+
* triggered.
707+
* @return value or {@code null} for none
708+
*/
709+
public java.lang.String getNotifyPreference() {
710+
return notifyPreference;
711+
}
712+
713+
/**
714+
* Whether or not field updates to this object should trigger notifications. When set to NOTIFY,
715+
* we will attempt to trigger a field update notification to users. These notifications will only
716+
* be sent to users if the field is part of an allowlist. If set to DO_NOT_NOTIFY or
717+
* NOTIFICATION_SETTINGS_UNSPECIFIED, no notification will be triggered. This setting is ephemeral
718+
* and needs to be set with each PATCH or UPDATE request, otherwise a notification will not be
719+
* triggered.
720+
* @param notifyPreference notifyPreference or {@code null} for none
721+
*/
722+
public GiftCardObject setNotifyPreference(java.lang.String notifyPreference) {
723+
this.notifyPreference = notifyPreference;
724+
return this;
725+
}
726+
688727
/**
689728
* Pass constraints for the object. Includes limiting NFC and screenshot behaviors.
690729
* @return value or {@code null} for none

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,17 @@ public final class LoyaltyClass extends com.google.api.client.json.GenericJson {
273273
@com.google.api.client.util.Key
274274
private java.lang.String multipleDevicesAndHoldersAllowedStatus;
275275

276+
/**
277+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
278+
* will attempt to trigger a field update notification to users. These notifications will only be
279+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
280+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
281+
* otherwise a notification will not be triggered.
282+
* The value may be {@code null}.
283+
*/
284+
@com.google.api.client.util.Key
285+
private java.lang.String notifyPreference;
286+
276287
/**
277288
* Required. The logo of the loyalty program or company. This logo is displayed in both the
278289
* details and list views of the app.
@@ -954,6 +965,31 @@ public LoyaltyClass setMultipleDevicesAndHoldersAllowedStatus(java.lang.String m
954965
return this;
955966
}
956967

968+
/**
969+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
970+
* will attempt to trigger a field update notification to users. These notifications will only be
971+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
972+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
973+
* otherwise a notification will not be triggered.
974+
* @return value or {@code null} for none
975+
*/
976+
public java.lang.String getNotifyPreference() {
977+
return notifyPreference;
978+
}
979+
980+
/**
981+
* Whether or not field updates to this class should trigger notifications. When set to NOTIFY, we
982+
* will attempt to trigger a field update notification to users. These notifications will only be
983+
* sent to users if the field is part of an allowlist. If not specified, no notification will be
984+
* triggered. This setting is ephemeral and needs to be set with each PATCH or UPDATE request,
985+
* otherwise a notification will not be triggered.
986+
* @param notifyPreference notifyPreference or {@code null} for none
987+
*/
988+
public LoyaltyClass setNotifyPreference(java.lang.String notifyPreference) {
989+
this.notifyPreference = notifyPreference;
990+
return this;
991+
}
992+
957993
/**
958994
* Required. The logo of the loyalty program or company. This logo is displayed in both the
959995
* details and list views of the app.

0 commit comments

Comments
 (0)