Skip to content

Commit 7bd8ddd

Browse files
1 parent 72561a4 commit 7bd8ddd

18 files changed

+590
-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-rev20241114-2.0.0</version>
25+
<version>v1-rev20241119-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-rev20241114-2.0.0'
38+
implementation 'com.google.apis:google-api-services-walletobjects:v1-rev20241119-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: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,16 @@ public final class EventTicketClass extends com.google.api.client.json.GenericJs
286286
@com.google.api.client.util.Key
287287
private Image logo;
288288

289+
/**
290+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
291+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
292+
* enters within a Google-set radius of the point. This field replaces the deprecated
293+
* LatLongPoints.
294+
* The value may be {@code null}.
295+
*/
296+
@com.google.api.client.util.Key
297+
private java.util.List<MerchantLocation> merchantLocations;
298+
289299
/**
290300
* An array of messages displayed in the app. All users of this object will receive its associated
291301
* messages. The maximum number of these fields is 10.
@@ -1036,6 +1046,29 @@ public EventTicketClass setLogo(Image logo) {
10361046
return this;
10371047
}
10381048

1049+
/**
1050+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
1051+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
1052+
* enters within a Google-set radius of the point. This field replaces the deprecated
1053+
* LatLongPoints.
1054+
* @return value or {@code null} for none
1055+
*/
1056+
public java.util.List<MerchantLocation> getMerchantLocations() {
1057+
return merchantLocations;
1058+
}
1059+
1060+
/**
1061+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
1062+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
1063+
* enters within a Google-set radius of the point. This field replaces the deprecated
1064+
* LatLongPoints.
1065+
* @param merchantLocations merchantLocations or {@code null} for none
1066+
*/
1067+
public EventTicketClass setMerchantLocations(java.util.List<MerchantLocation> merchantLocations) {
1068+
this.merchantLocations = merchantLocations;
1069+
return this;
1070+
}
1071+
10391072
/**
10401073
* An array of messages displayed in the app. All users of this object will receive its associated
10411074
* messages. The maximum number of these fields is 10.

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,16 @@ public final class EventTicketObject extends com.google.api.client.json.GenericJ
191191
@com.google.api.client.util.Key
192192
private java.util.List<LatLongPoint> locations;
193193

194+
/**
195+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
196+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
197+
* enters within a Google-set radius of the point. This field replaces the deprecated
198+
* LatLongPoints.
199+
* The value may be {@code null}.
200+
*/
201+
@com.google.api.client.util.Key
202+
private java.util.List<MerchantLocation> merchantLocations;
203+
194204
/**
195205
* An array of messages displayed in the app. All users of this object will receive its associated
196206
* messages. The maximum number of these fields is 10.
@@ -701,6 +711,29 @@ public EventTicketObject setLocations(java.util.List<LatLongPoint> locations) {
701711
return this;
702712
}
703713

714+
/**
715+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
716+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
717+
* enters within a Google-set radius of the point. This field replaces the deprecated
718+
* LatLongPoints.
719+
* @return value or {@code null} for none
720+
*/
721+
public java.util.List<MerchantLocation> getMerchantLocations() {
722+
return merchantLocations;
723+
}
724+
725+
/**
726+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
727+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
728+
* enters within a Google-set radius of the point. This field replaces the deprecated
729+
* LatLongPoints.
730+
* @param merchantLocations merchantLocations or {@code null} for none
731+
*/
732+
public EventTicketObject setMerchantLocations(java.util.List<MerchantLocation> merchantLocations) {
733+
this.merchantLocations = merchantLocations;
734+
return this;
735+
}
736+
704737
/**
705738
* An array of messages displayed in the app. All users of this object will receive its associated
706739
* messages. The maximum number of these fields is 10.

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,16 @@ public final class FlightClass extends com.google.api.client.json.GenericJson {
284284
@com.google.api.client.util.Key
285285
private java.util.List<LatLongPoint> locations;
286286

287+
/**
288+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
289+
* added beyond the 10 will be rejected by the validator. These locations will trigger a
290+
* notification when a user enters within a Google-set radius of the point. This field replaces
291+
* the deprecated LatLongPoints.
292+
* The value may be {@code null}.
293+
*/
294+
@com.google.api.client.util.Key
295+
private java.util.List<MerchantLocation> merchantLocations;
296+
287297
/**
288298
* An array of messages displayed in the app. All users of this object will receive its associated
289299
* messages. The maximum number of these fields is 10.
@@ -986,6 +996,29 @@ public FlightClass setLocations(java.util.List<LatLongPoint> locations) {
986996
return this;
987997
}
988998

999+
/**
1000+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
1001+
* added beyond the 10 will be rejected by the validator. These locations will trigger a
1002+
* notification when a user enters within a Google-set radius of the point. This field replaces
1003+
* the deprecated LatLongPoints.
1004+
* @return value or {@code null} for none
1005+
*/
1006+
public java.util.List<MerchantLocation> getMerchantLocations() {
1007+
return merchantLocations;
1008+
}
1009+
1010+
/**
1011+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
1012+
* added beyond the 10 will be rejected by the validator. These locations will trigger a
1013+
* notification when a user enters within a Google-set radius of the point. This field replaces
1014+
* the deprecated LatLongPoints.
1015+
* @param merchantLocations merchantLocations or {@code null} for none
1016+
*/
1017+
public FlightClass setMerchantLocations(java.util.List<MerchantLocation> merchantLocations) {
1018+
this.merchantLocations = merchantLocations;
1019+
return this;
1020+
}
1021+
9891022
/**
9901023
* An array of messages displayed in the app. All users of this object will receive its associated
9911024
* messages. The maximum number of these fields is 10.

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,16 @@ public final class FlightObject extends com.google.api.client.json.GenericJson {
181181
@com.google.api.client.util.Key
182182
private java.util.List<LatLongPoint> locations;
183183

184+
/**
185+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
186+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
187+
* enters within a Google-set radius of the point. This field replaces the deprecated
188+
* LatLongPoints.
189+
* The value may be {@code null}.
190+
*/
191+
@com.google.api.client.util.Key
192+
private java.util.List<MerchantLocation> merchantLocations;
193+
184194
/**
185195
* An array of messages displayed in the app. All users of this object will receive its associated
186196
* messages. The maximum number of these fields is 10.
@@ -651,6 +661,29 @@ public FlightObject setLocations(java.util.List<LatLongPoint> locations) {
651661
return this;
652662
}
653663

664+
/**
665+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
666+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
667+
* enters within a Google-set radius of the point. This field replaces the deprecated
668+
* LatLongPoints.
669+
* @return value or {@code null} for none
670+
*/
671+
public java.util.List<MerchantLocation> getMerchantLocations() {
672+
return merchantLocations;
673+
}
674+
675+
/**
676+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
677+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
678+
* enters within a Google-set radius of the point. This field replaces the deprecated
679+
* LatLongPoints.
680+
* @param merchantLocations merchantLocations or {@code null} for none
681+
*/
682+
public FlightObject setMerchantLocations(java.util.List<MerchantLocation> merchantLocations) {
683+
this.merchantLocations = merchantLocations;
684+
return this;
685+
}
686+
654687
/**
655688
* An array of messages displayed in the app. All users of this object will receive its associated
656689
* messages. The maximum number of these fields is 10.

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,16 @@ public final class GenericClass extends com.google.api.client.json.GenericJson {
8686
@com.google.api.client.util.Key
8787
private LinksModuleData linksModuleData;
8888

89+
/**
90+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
91+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
92+
* enters within a Google-set radius of the point. This field replaces the deprecated
93+
* LatLongPoints.
94+
* The value may be {@code null}.
95+
*/
96+
@com.google.api.client.util.Key
97+
private java.util.List<MerchantLocation> merchantLocations;
98+
8999
/**
90100
* An array of messages displayed in the app. All users of this object will receive its associated
91101
* messages. The maximum number of these fields is 10.
@@ -277,6 +287,29 @@ public GenericClass setLinksModuleData(LinksModuleData linksModuleData) {
277287
return this;
278288
}
279289

290+
/**
291+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
292+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
293+
* enters within a Google-set radius of the point. This field replaces the deprecated
294+
* LatLongPoints.
295+
* @return value or {@code null} for none
296+
*/
297+
public java.util.List<MerchantLocation> getMerchantLocations() {
298+
return merchantLocations;
299+
}
300+
301+
/**
302+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
303+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
304+
* enters within a Google-set radius of the point. This field replaces the deprecated
305+
* LatLongPoints.
306+
* @param merchantLocations merchantLocations or {@code null} for none
307+
*/
308+
public GenericClass setMerchantLocations(java.util.List<MerchantLocation> merchantLocations) {
309+
this.merchantLocations = merchantLocations;
310+
return this;
311+
}
312+
280313
/**
281314
* An array of messages displayed in the app. All users of this object will receive its associated
282315
* messages. The maximum number of these fields is 10.

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,16 @@ public final class GenericObject extends com.google.api.client.json.GenericJson
159159
@com.google.api.client.util.Key
160160
private Image logo;
161161

162+
/**
163+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
164+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
165+
* enters within a Google-set radius of the point. This field replaces the deprecated
166+
* LatLongPoints.
167+
* The value may be {@code null}.
168+
*/
169+
@com.google.api.client.util.Key
170+
private java.util.List<MerchantLocation> merchantLocations;
171+
162172
/**
163173
* An array of messages displayed in the app. All users of this object will receive its associated
164174
* messages. The maximum number of these fields is 10.
@@ -559,6 +569,29 @@ public GenericObject setLogo(Image logo) {
559569
return this;
560570
}
561571

572+
/**
573+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
574+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
575+
* enters within a Google-set radius of the point. This field replaces the deprecated
576+
* LatLongPoints.
577+
* @return value or {@code null} for none
578+
*/
579+
public java.util.List<MerchantLocation> getMerchantLocations() {
580+
return merchantLocations;
581+
}
582+
583+
/**
584+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
585+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
586+
* enters within a Google-set radius of the point. This field replaces the deprecated
587+
* LatLongPoints.
588+
* @param merchantLocations merchantLocations or {@code null} for none
589+
*/
590+
public GenericObject setMerchantLocations(java.util.List<MerchantLocation> merchantLocations) {
591+
this.merchantLocations = merchantLocations;
592+
return this;
593+
}
594+
562595
/**
563596
* An array of messages displayed in the app. All users of this object will receive its associated
564597
* messages. The maximum number of these fields is 10.

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,16 @@ public final class GiftCardClass extends com.google.api.client.json.GenericJson
220220
@com.google.api.client.util.Key
221221
private java.util.List<LatLongPoint> locations;
222222

223+
/**
224+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
225+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
226+
* enters within a Google-set radius of the point. This field replaces the deprecated
227+
* LatLongPoints.
228+
* The value may be {@code null}.
229+
*/
230+
@com.google.api.client.util.Key
231+
private java.util.List<MerchantLocation> merchantLocations;
232+
223233
/**
224234
* Merchant name, such as "Adam's Apparel". The app may display an ellipsis after the first 20
225235
* characters to ensure full string is displayed on smaller screens.
@@ -806,6 +816,29 @@ public GiftCardClass setLocations(java.util.List<LatLongPoint> locations) {
806816
return this;
807817
}
808818

819+
/**
820+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
821+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
822+
* enters within a Google-set radius of the point. This field replaces the deprecated
823+
* LatLongPoints.
824+
* @return value or {@code null} for none
825+
*/
826+
public java.util.List<MerchantLocation> getMerchantLocations() {
827+
return merchantLocations;
828+
}
829+
830+
/**
831+
* Merchant locations. There is a maximum of ten on the class. Any additional MerchantLocations
832+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
833+
* enters within a Google-set radius of the point. This field replaces the deprecated
834+
* LatLongPoints.
835+
* @param merchantLocations merchantLocations or {@code null} for none
836+
*/
837+
public GiftCardClass setMerchantLocations(java.util.List<MerchantLocation> merchantLocations) {
838+
this.merchantLocations = merchantLocations;
839+
return this;
840+
}
841+
809842
/**
810843
* Merchant name, such as "Adam's Apparel". The app may display an ellipsis after the first 20
811844
* characters to ensure full string is displayed on smaller screens.

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,16 @@ public final class GiftCardObject extends com.google.api.client.json.GenericJson
193193
@com.google.api.client.util.Key
194194
private java.util.List<LatLongPoint> locations;
195195

196+
/**
197+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
198+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
199+
* enters within a Google-set radius of the point. This field replaces the deprecated
200+
* LatLongPoints.
201+
* The value may be {@code null}.
202+
*/
203+
@com.google.api.client.util.Key
204+
private java.util.List<MerchantLocation> merchantLocations;
205+
196206
/**
197207
* An array of messages displayed in the app. All users of this object will receive its associated
198208
* messages. The maximum number of these fields is 10.
@@ -678,6 +688,29 @@ public GiftCardObject setLocations(java.util.List<LatLongPoint> locations) {
678688
return this;
679689
}
680690

691+
/**
692+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
693+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
694+
* enters within a Google-set radius of the point. This field replaces the deprecated
695+
* LatLongPoints.
696+
* @return value or {@code null} for none
697+
*/
698+
public java.util.List<MerchantLocation> getMerchantLocations() {
699+
return merchantLocations;
700+
}
701+
702+
/**
703+
* Merchant locations. There is a maximum of ten on the object. Any additional MerchantLocations
704+
* added beyond the 10 will be rejected. These locations will trigger a notification when a user
705+
* enters within a Google-set radius of the point. This field replaces the deprecated
706+
* LatLongPoints.
707+
* @param merchantLocations merchantLocations or {@code null} for none
708+
*/
709+
public GiftCardObject setMerchantLocations(java.util.List<MerchantLocation> merchantLocations) {
710+
this.merchantLocations = merchantLocations;
711+
return this;
712+
}
713+
681714
/**
682715
* An array of messages displayed in the app. All users of this object will receive its associated
683716
* messages. The maximum number of these fields is 10.

0 commit comments

Comments
 (0)