Skip to content

Commit fcc4ac2

Browse files
1 parent 56d68a5 commit fcc4ac2

11 files changed

+435
-6
lines changed

clients/google-api-services-places/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-places</artifactId>
25-
<version>v1-rev20241022-2.0.0</version>
25+
<version>v1-rev20241028-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-places:v1-rev20241022-2.0.0'
38+
implementation 'com.google.apis:google-api-services-places:v1-rev20241028-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-places/v1/2.0.0/com/google/api/services/places/v1/model/GoogleMapsPlacesV1Photo.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,20 @@ public final class GoogleMapsPlacesV1Photo extends com.google.api.client.json.Ge
4242
com.google.api.client.util.Data.nullOf(GoogleMapsPlacesV1AuthorAttribution.class);
4343
}
4444

45+
/**
46+
* A link where users can flag a problem with the photo.
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private java.lang.String flagContentUri;
51+
52+
/**
53+
* A link to show the photo on Google Maps.
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.lang.String googleMapsUri;
58+
4559
/**
4660
* The maximum available height, in pixels.
4761
* The value may be {@code null}.
@@ -81,6 +95,40 @@ public GoogleMapsPlacesV1Photo setAuthorAttributions(java.util.List<GoogleMapsPl
8195
return this;
8296
}
8397

98+
/**
99+
* A link where users can flag a problem with the photo.
100+
* @return value or {@code null} for none
101+
*/
102+
public java.lang.String getFlagContentUri() {
103+
return flagContentUri;
104+
}
105+
106+
/**
107+
* A link where users can flag a problem with the photo.
108+
* @param flagContentUri flagContentUri or {@code null} for none
109+
*/
110+
public GoogleMapsPlacesV1Photo setFlagContentUri(java.lang.String flagContentUri) {
111+
this.flagContentUri = flagContentUri;
112+
return this;
113+
}
114+
115+
/**
116+
* A link to show the photo on Google Maps.
117+
* @return value or {@code null} for none
118+
*/
119+
public java.lang.String getGoogleMapsUri() {
120+
return googleMapsUri;
121+
}
122+
123+
/**
124+
* A link to show the photo on Google Maps.
125+
* @param googleMapsUri googleMapsUri or {@code null} for none
126+
*/
127+
public GoogleMapsPlacesV1Photo setGoogleMapsUri(java.lang.String googleMapsUri) {
128+
this.googleMapsUri = googleMapsUri;
129+
return this;
130+
}
131+
84132
/**
85133
* The maximum available height, in pixels.
86134
* @return value or {@code null} for none

clients/google-api-services-places/v1/2.0.0/com/google/api/services/places/v1/model/GoogleMapsPlacesV1Place.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,13 @@ public final class GoogleMapsPlacesV1Place extends com.google.api.client.json.Ge
208208
@com.google.api.client.util.Key
209209
private java.lang.Boolean goodForWatchingSports;
210210

211+
/**
212+
* Links to trigger different Google Maps actions.
213+
* The value may be {@code null}.
214+
*/
215+
@com.google.api.client.util.Key
216+
private GoogleMapsPlacesV1PlaceGoogleMapsLinks googleMapsLinks;
217+
211218
/**
212219
* A URL providing more information about this place.
213220
* The value may be {@code null}.
@@ -951,6 +958,23 @@ public GoogleMapsPlacesV1Place setGoodForWatchingSports(java.lang.Boolean goodFo
951958
return this;
952959
}
953960

961+
/**
962+
* Links to trigger different Google Maps actions.
963+
* @return value or {@code null} for none
964+
*/
965+
public GoogleMapsPlacesV1PlaceGoogleMapsLinks getGoogleMapsLinks() {
966+
return googleMapsLinks;
967+
}
968+
969+
/**
970+
* Links to trigger different Google Maps actions.
971+
* @param googleMapsLinks googleMapsLinks or {@code null} for none
972+
*/
973+
public GoogleMapsPlacesV1Place setGoogleMapsLinks(GoogleMapsPlacesV1PlaceGoogleMapsLinks googleMapsLinks) {
974+
this.googleMapsLinks = googleMapsLinks;
975+
return this;
976+
}
977+
954978
/**
955979
* A URL providing more information about this place.
956980
* @return value or {@code null} for none

clients/google-api-services-places/v1/2.0.0/com/google/api/services/places/v1/model/GoogleMapsPlacesV1PlaceAreaSummary.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class GoogleMapsPlacesV1PlaceAreaSummary extends com.google.api.cli
4444
com.google.api.client.util.Data.nullOf(GoogleMapsPlacesV1ContentBlock.class);
4545
}
4646

47+
/**
48+
* A link where users can flag a problem with the summary.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String flagContentUri;
53+
4754
/**
4855
* Content blocks that compose the area summary. Each block has a separate topic about the area.
4956
* @return value or {@code null} for none
@@ -61,6 +68,23 @@ public GoogleMapsPlacesV1PlaceAreaSummary setContentBlocks(java.util.List<Google
6168
return this;
6269
}
6370

71+
/**
72+
* A link where users can flag a problem with the summary.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.String getFlagContentUri() {
76+
return flagContentUri;
77+
}
78+
79+
/**
80+
* A link where users can flag a problem with the summary.
81+
* @param flagContentUri flagContentUri or {@code null} for none
82+
*/
83+
public GoogleMapsPlacesV1PlaceAreaSummary setFlagContentUri(java.lang.String flagContentUri) {
84+
this.flagContentUri = flagContentUri;
85+
return this;
86+
}
87+
6488
@Override
6589
public GoogleMapsPlacesV1PlaceAreaSummary set(String fieldName, Object value) {
6690
return (GoogleMapsPlacesV1PlaceAreaSummary) super.set(fieldName, value);

clients/google-api-services-places/v1/2.0.0/com/google/api/services/places/v1/model/GoogleMapsPlacesV1PlaceGenerativeSummary.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,27 @@ public final class GoogleMapsPlacesV1PlaceGenerativeSummary extends com.google.a
3737
@com.google.api.client.util.Key
3838
private GoogleTypeLocalizedText description;
3939

40+
/**
41+
* A link where users can flag a problem with the description summary.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String descriptionFlagContentUri;
46+
4047
/**
4148
* The overview of the place.
4249
* The value may be {@code null}.
4350
*/
4451
@com.google.api.client.util.Key
4552
private GoogleTypeLocalizedText overview;
4653

54+
/**
55+
* A link where users can flag a problem with the overview summary.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String overviewFlagContentUri;
60+
4761
/**
4862
* References that are used to generate the summary description.
4963
* The value may be {@code null}.
@@ -68,6 +82,23 @@ public GoogleMapsPlacesV1PlaceGenerativeSummary setDescription(GoogleTypeLocaliz
6882
return this;
6983
}
7084

85+
/**
86+
* A link where users can flag a problem with the description summary.
87+
* @return value or {@code null} for none
88+
*/
89+
public java.lang.String getDescriptionFlagContentUri() {
90+
return descriptionFlagContentUri;
91+
}
92+
93+
/**
94+
* A link where users can flag a problem with the description summary.
95+
* @param descriptionFlagContentUri descriptionFlagContentUri or {@code null} for none
96+
*/
97+
public GoogleMapsPlacesV1PlaceGenerativeSummary setDescriptionFlagContentUri(java.lang.String descriptionFlagContentUri) {
98+
this.descriptionFlagContentUri = descriptionFlagContentUri;
99+
return this;
100+
}
101+
71102
/**
72103
* The overview of the place.
73104
* @return value or {@code null} for none
@@ -85,6 +116,23 @@ public GoogleMapsPlacesV1PlaceGenerativeSummary setOverview(GoogleTypeLocalizedT
85116
return this;
86117
}
87118

119+
/**
120+
* A link where users can flag a problem with the overview summary.
121+
* @return value or {@code null} for none
122+
*/
123+
public java.lang.String getOverviewFlagContentUri() {
124+
return overviewFlagContentUri;
125+
}
126+
127+
/**
128+
* A link where users can flag a problem with the overview summary.
129+
* @param overviewFlagContentUri overviewFlagContentUri or {@code null} for none
130+
*/
131+
public GoogleMapsPlacesV1PlaceGenerativeSummary setOverviewFlagContentUri(java.lang.String overviewFlagContentUri) {
132+
this.overviewFlagContentUri = overviewFlagContentUri;
133+
return this;
134+
}
135+
88136
/**
89137
* References that are used to generate the summary description.
90138
* @return value or {@code null} for none

0 commit comments

Comments
 (0)