Skip to content

Commit 68f67e2

Browse files
1 parent 0e4979b commit 68f67e2

File tree

12 files changed

+322
-27
lines changed

12 files changed

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

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,15 @@ public final class EventTicketObject extends com.google.api.client.json.GenericJ
205205
@com.google.api.client.util.Key
206206
private RotatingBarcode rotatingBarcode;
207207

208+
/**
209+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
210+
* Note that this restrictions will only be applied during save time. If the restrictions changed
211+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
212+
* The value may be {@code null}.
213+
*/
214+
@com.google.api.client.util.Key
215+
private SaveRestrictions saveRestrictions;
216+
208217
/**
209218
* Seating details for this ticket.
210219
* The value may be {@code null}.
@@ -694,6 +703,27 @@ public EventTicketObject setRotatingBarcode(RotatingBarcode rotatingBarcode) {
694703
return this;
695704
}
696705

706+
/**
707+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
708+
* Note that this restrictions will only be applied during save time. If the restrictions changed
709+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
710+
* @return value or {@code null} for none
711+
*/
712+
public SaveRestrictions getSaveRestrictions() {
713+
return saveRestrictions;
714+
}
715+
716+
/**
717+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
718+
* Note that this restrictions will only be applied during save time. If the restrictions changed
719+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
720+
* @param saveRestrictions saveRestrictions or {@code null} for none
721+
*/
722+
public EventTicketObject setSaveRestrictions(SaveRestrictions saveRestrictions) {
723+
this.saveRestrictions = saveRestrictions;
724+
return this;
725+
}
726+
697727
/**
698728
* Seating details for this ticket.
699729
* @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: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,7 @@ public final class FlightClass extends com.google.api.client.json.GenericJson {
196196
* format date/time without an offset. Time may be specified up to millisecond precision. eg:
197197
* `2027-03-05T06:30:00` This should be the local date/time at the airport (not a UTC time).
198198
* Google will reject the request if UTC offset is provided. Time zones will be calculated by
199-
* Google based on departure airport. If this is not set, Google will set it based on data from
200-
* other sources.
199+
* Google based on departure airport.
201200
* The value may be {@code null}.
202201
*/
203202
@com.google.api.client.util.Key
@@ -211,8 +210,7 @@ public final class FlightClass extends com.google.api.client.json.GenericJson {
211210
* at the gate. This is an ISO 8601 extended format date/time without an offset. Time may be
212211
* specified up to millisecond precision. eg: `2027-03-05T06:30:00` This should be the local
213212
* date/time at the airport (not a UTC time). Google will reject the request if UTC offset is
214-
* provided. Time zones will be calculated by Google based on arrival airport. If this is not set,
215-
* Google will set it based on data from other sources.
213+
* provided. Time zones will be calculated by Google based on arrival airport.
216214
* The value may be {@code null}.
217215
*/
218216
@com.google.api.client.util.Key
@@ -227,7 +225,7 @@ public final class FlightClass extends com.google.api.client.json.GenericJson {
227225
* without an offset. Time may be specified up to millisecond precision. eg: `2027-03-05T06:30:00`
228226
* This should be the local date/time at the airport (not a UTC time). Google will reject the
229227
* request if UTC offset is provided. Time zones will be calculated by Google based on departure
230-
* airport. If this is not set, Google will set it based on data from other sources.
228+
* airport.
231229
* The value may be {@code null}.
232230
*/
233231
@com.google.api.client.util.Key
@@ -252,8 +250,7 @@ public final class FlightClass extends com.google.api.client.json.GenericJson {
252250
* format date/time without an offset. Time may be specified up to millisecond precision. eg:
253251
* `2027-03-05T06:30:00` This should be the local date/time at the airport (not a UTC time).
254252
* Google will reject the request if UTC offset is provided. Time zones will be calculated by
255-
* Google based on arrival airport. If this is not set, Google will set it based on data from
256-
* other sources.
253+
* Google based on arrival airport.
257254
* The value may be {@code null}.
258255
*/
259256
@com.google.api.client.util.Key
@@ -765,8 +762,7 @@ public FlightClass setLinksModuleData(LinksModuleData linksModuleData) {
765762
* format date/time without an offset. Time may be specified up to millisecond precision. eg:
766763
* `2027-03-05T06:30:00` This should be the local date/time at the airport (not a UTC time).
767764
* Google will reject the request if UTC offset is provided. Time zones will be calculated by
768-
* Google based on departure airport. If this is not set, Google will set it based on data from
769-
* other sources.
765+
* Google based on departure airport.
770766
* @return value or {@code null} for none
771767
*/
772768
public java.lang.String getLocalBoardingDateTime() {
@@ -778,8 +774,7 @@ public java.lang.String getLocalBoardingDateTime() {
778774
* format date/time without an offset. Time may be specified up to millisecond precision. eg:
779775
* `2027-03-05T06:30:00` This should be the local date/time at the airport (not a UTC time).
780776
* Google will reject the request if UTC offset is provided. Time zones will be calculated by
781-
* Google based on departure airport. If this is not set, Google will set it based on data from
782-
* other sources.
777+
* Google based on departure airport.
783778
* @param localBoardingDateTime localBoardingDateTime or {@code null} for none
784779
*/
785780
public FlightClass setLocalBoardingDateTime(java.lang.String localBoardingDateTime) {
@@ -795,8 +790,7 @@ public FlightClass setLocalBoardingDateTime(java.lang.String localBoardingDateTi
795790
* at the gate. This is an ISO 8601 extended format date/time without an offset. Time may be
796791
* specified up to millisecond precision. eg: `2027-03-05T06:30:00` This should be the local
797792
* date/time at the airport (not a UTC time). Google will reject the request if UTC offset is
798-
* provided. Time zones will be calculated by Google based on arrival airport. If this is not set,
799-
* Google will set it based on data from other sources.
793+
* provided. Time zones will be calculated by Google based on arrival airport.
800794
* @return value or {@code null} for none
801795
*/
802796
public java.lang.String getLocalEstimatedOrActualArrivalDateTime() {
@@ -811,8 +805,7 @@ public java.lang.String getLocalEstimatedOrActualArrivalDateTime() {
811805
* at the gate. This is an ISO 8601 extended format date/time without an offset. Time may be
812806
* specified up to millisecond precision. eg: `2027-03-05T06:30:00` This should be the local
813807
* date/time at the airport (not a UTC time). Google will reject the request if UTC offset is
814-
* provided. Time zones will be calculated by Google based on arrival airport. If this is not set,
815-
* Google will set it based on data from other sources.
808+
* provided. Time zones will be calculated by Google based on arrival airport.
816809
* @param localEstimatedOrActualArrivalDateTime localEstimatedOrActualArrivalDateTime or {@code null} for none
817810
*/
818811
public FlightClass setLocalEstimatedOrActualArrivalDateTime(java.lang.String localEstimatedOrActualArrivalDateTime) {
@@ -829,7 +822,7 @@ public FlightClass setLocalEstimatedOrActualArrivalDateTime(java.lang.String loc
829822
* without an offset. Time may be specified up to millisecond precision. eg: `2027-03-05T06:30:00`
830823
* This should be the local date/time at the airport (not a UTC time). Google will reject the
831824
* request if UTC offset is provided. Time zones will be calculated by Google based on departure
832-
* airport. If this is not set, Google will set it based on data from other sources.
825+
* airport.
833826
* @return value or {@code null} for none
834827
*/
835828
public java.lang.String getLocalEstimatedOrActualDepartureDateTime() {
@@ -845,7 +838,7 @@ public java.lang.String getLocalEstimatedOrActualDepartureDateTime() {
845838
* without an offset. Time may be specified up to millisecond precision. eg: `2027-03-05T06:30:00`
846839
* This should be the local date/time at the airport (not a UTC time). Google will reject the
847840
* request if UTC offset is provided. Time zones will be calculated by Google based on departure
848-
* airport. If this is not set, Google will set it based on data from other sources.
841+
* airport.
849842
* @param localEstimatedOrActualDepartureDateTime localEstimatedOrActualDepartureDateTime or {@code null} for none
850843
*/
851844
public FlightClass setLocalEstimatedOrActualDepartureDateTime(java.lang.String localEstimatedOrActualDepartureDateTime) {
@@ -887,8 +880,7 @@ public FlightClass setLocalGateClosingDateTime(java.lang.String localGateClosing
887880
* format date/time without an offset. Time may be specified up to millisecond precision. eg:
888881
* `2027-03-05T06:30:00` This should be the local date/time at the airport (not a UTC time).
889882
* Google will reject the request if UTC offset is provided. Time zones will be calculated by
890-
* Google based on arrival airport. If this is not set, Google will set it based on data from
891-
* other sources.
883+
* Google based on arrival airport.
892884
* @return value or {@code null} for none
893885
*/
894886
public java.lang.String getLocalScheduledArrivalDateTime() {
@@ -902,8 +894,7 @@ public java.lang.String getLocalScheduledArrivalDateTime() {
902894
* format date/time without an offset. Time may be specified up to millisecond precision. eg:
903895
* `2027-03-05T06:30:00` This should be the local date/time at the airport (not a UTC time).
904896
* Google will reject the request if UTC offset is provided. Time zones will be calculated by
905-
* Google based on arrival airport. If this is not set, Google will set it based on data from
906-
* other sources.
897+
* Google based on arrival airport.
907898
* @param localScheduledArrivalDateTime localScheduledArrivalDateTime or {@code null} for none
908899
*/
909900
public FlightClass setLocalScheduledArrivalDateTime(java.lang.String localScheduledArrivalDateTime) {

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,15 @@ public final class FlightObject extends com.google.api.client.json.GenericJson {
202202
@com.google.api.client.util.Key
203203
private RotatingBarcode rotatingBarcode;
204204

205+
/**
206+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
207+
* Note that this restrictions will only be applied during save time. If the restrictions changed
208+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
209+
* The value may be {@code null}.
210+
*/
211+
@com.google.api.client.util.Key
212+
private SaveRestrictions saveRestrictions;
213+
205214
/**
206215
* An image for the security program that applies to the passenger.
207216
* The value may be {@code null}.
@@ -661,6 +670,27 @@ public FlightObject setRotatingBarcode(RotatingBarcode rotatingBarcode) {
661670
return this;
662671
}
663672

673+
/**
674+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
675+
* Note that this restrictions will only be applied during save time. If the restrictions changed
676+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
677+
* @return value or {@code null} for none
678+
*/
679+
public SaveRestrictions getSaveRestrictions() {
680+
return saveRestrictions;
681+
}
682+
683+
/**
684+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
685+
* Note that this restrictions will only be applied during save time. If the restrictions changed
686+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
687+
* @param saveRestrictions saveRestrictions or {@code null} for none
688+
*/
689+
public FlightObject setSaveRestrictions(SaveRestrictions saveRestrictions) {
690+
this.saveRestrictions = saveRestrictions;
691+
return this;
692+
}
693+
664694
/**
665695
* An image for the security program that applies to the passenger.
666696
* @return value or {@code null} for none

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,15 @@ public final class GenericObject extends com.google.api.client.json.GenericJson
164164
@com.google.api.client.util.Key
165165
private RotatingBarcode rotatingBarcode;
166166

167+
/**
168+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
169+
* Note that this restrictions will only be applied during save time. If the restrictions changed
170+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
171+
* The value may be {@code null}.
172+
*/
173+
@com.google.api.client.util.Key
174+
private SaveRestrictions saveRestrictions;
175+
167176
/**
168177
* The value that will be transmitted to a Smart Tap certified terminal over NFC for this object.
169178
* The class level fields `enableSmartTap` and `redemptionIssuers` must also be set up correctly
@@ -535,6 +544,27 @@ public GenericObject setRotatingBarcode(RotatingBarcode rotatingBarcode) {
535544
return this;
536545
}
537546

547+
/**
548+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
549+
* Note that this restrictions will only be applied during save time. If the restrictions changed
550+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
551+
* @return value or {@code null} for none
552+
*/
553+
public SaveRestrictions getSaveRestrictions() {
554+
return saveRestrictions;
555+
}
556+
557+
/**
558+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
559+
* Note that this restrictions will only be applied during save time. If the restrictions changed
560+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
561+
* @param saveRestrictions saveRestrictions or {@code null} for none
562+
*/
563+
public GenericObject setSaveRestrictions(SaveRestrictions saveRestrictions) {
564+
this.saveRestrictions = saveRestrictions;
565+
return this;
566+
}
567+
538568
/**
539569
* The value that will be transmitted to a Smart Tap certified terminal over NFC for this object.
540570
* The class level fields `enableSmartTap` and `redemptionIssuers` must also be set up correctly

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,15 @@ public final class GiftCardObject extends com.google.api.client.json.GenericJson
206206
@com.google.api.client.util.Key
207207
private RotatingBarcode rotatingBarcode;
208208

209+
/**
210+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
211+
* Note that this restrictions will only be applied during save time. If the restrictions changed
212+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
213+
* The value may be {@code null}.
214+
*/
215+
@com.google.api.client.util.Key
216+
private SaveRestrictions saveRestrictions;
217+
209218
/**
210219
* The value that will be transmitted to a Smart Tap certified terminal over NFC for this object.
211220
* The class level fields `enableSmartTap` and `redemptionIssuers` must also be set up correctly
@@ -669,6 +678,27 @@ public GiftCardObject setRotatingBarcode(RotatingBarcode rotatingBarcode) {
669678
return this;
670679
}
671680

681+
/**
682+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
683+
* Note that this restrictions will only be applied during save time. If the restrictions changed
684+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
685+
* @return value or {@code null} for none
686+
*/
687+
public SaveRestrictions getSaveRestrictions() {
688+
return saveRestrictions;
689+
}
690+
691+
/**
692+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
693+
* Note that this restrictions will only be applied during save time. If the restrictions changed
694+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
695+
* @param saveRestrictions saveRestrictions or {@code null} for none
696+
*/
697+
public GiftCardObject setSaveRestrictions(SaveRestrictions saveRestrictions) {
698+
this.saveRestrictions = saveRestrictions;
699+
return this;
700+
}
701+
672702
/**
673703
* The value that will be transmitted to a Smart Tap certified terminal over NFC for this object.
674704
* The class level fields `enableSmartTap` and `redemptionIssuers` must also be set up correctly

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,15 @@ public final class LoyaltyObject extends com.google.api.client.json.GenericJson
213213
@com.google.api.client.util.Key
214214
private RotatingBarcode rotatingBarcode;
215215

216+
/**
217+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
218+
* Note that this restrictions will only be applied during save time. If the restrictions changed
219+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
220+
* The value may be {@code null}.
221+
*/
222+
@com.google.api.client.util.Key
223+
private SaveRestrictions saveRestrictions;
224+
216225
/**
217226
* The secondary loyalty reward points label, balance, and type. Shown in addition to the primary
218227
* loyalty points.
@@ -673,6 +682,27 @@ public LoyaltyObject setRotatingBarcode(RotatingBarcode rotatingBarcode) {
673682
return this;
674683
}
675684

685+
/**
686+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
687+
* Note that this restrictions will only be applied during save time. If the restrictions changed
688+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
689+
* @return value or {@code null} for none
690+
*/
691+
public SaveRestrictions getSaveRestrictions() {
692+
return saveRestrictions;
693+
}
694+
695+
/**
696+
* Restrictions on the object that needs to be verified before the user tries to save the pass.
697+
* Note that this restrictions will only be applied during save time. If the restrictions changed
698+
* after a user saves the pass, the new restrictions will not be applied to an already saved pass.
699+
* @param saveRestrictions saveRestrictions or {@code null} for none
700+
*/
701+
public LoyaltyObject setSaveRestrictions(SaveRestrictions saveRestrictions) {
702+
this.saveRestrictions = saveRestrictions;
703+
return this;
704+
}
705+
676706
/**
677707
* The secondary loyalty reward points label, balance, and type. Shown in addition to the primary
678708
* loyalty points.

0 commit comments

Comments
 (0)