Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 621065b

Browse files
authoredMay 9, 2025
1 parent 3d5cd9b commit 621065b

File tree

5 files changed

+33
-9
lines changed

5 files changed

+33
-9
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-rev20250504-2.0.0</version>
25+
<version>v1-rev20250506-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-rev20250504-2.0.0'
38+
implementation 'com.google.apis:google-api-services-places:v1-rev20250506-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public final class GoogleMapsPlacesV1PlaceGoogleMapsLinks extends com.google.api
5959
private java.lang.String reviewsUri;
6060

6161
/**
62-
* A link to show reviews of this place on Google Maps.
62+
* A link to write a review for this place on Google Maps.
6363
* The value may be {@code null}.
6464
*/
6565
@com.google.api.client.util.Key
@@ -136,15 +136,15 @@ public GoogleMapsPlacesV1PlaceGoogleMapsLinks setReviewsUri(java.lang.String rev
136136
}
137137

138138
/**
139-
* A link to show reviews of this place on Google Maps.
139+
* A link to write a review for this place on Google Maps.
140140
* @return value or {@code null} for none
141141
*/
142142
public java.lang.String getWriteAReviewUri() {
143143
return writeAReviewUri;
144144
}
145145

146146
/**
147-
* A link to show reviews of this place on Google Maps.
147+
* A link to write a review for this place on Google Maps.
148148
* @param writeAReviewUri writeAReviewUri or {@code null} for none
149149
*/
150150
public GoogleMapsPlacesV1PlaceGoogleMapsLinks setWriteAReviewUri(java.lang.String writeAReviewUri) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class GoogleMapsPlacesV1PlaceReviewSummary extends com.google.api.c
4444
@com.google.api.client.util.Key
4545
private java.lang.String flagContentUri;
4646

47+
/**
48+
* A link to show reviews of this place on Google Maps.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String reviewsUri;
53+
4754
/**
4855
* The summary of user reviews.
4956
* The value may be {@code null}.
@@ -87,6 +94,23 @@ public GoogleMapsPlacesV1PlaceReviewSummary setFlagContentUri(java.lang.String f
8794
return this;
8895
}
8996

97+
/**
98+
* A link to show reviews of this place on Google Maps.
99+
* @return value or {@code null} for none
100+
*/
101+
public java.lang.String getReviewsUri() {
102+
return reviewsUri;
103+
}
104+
105+
/**
106+
* A link to show reviews of this place on Google Maps.
107+
* @param reviewsUri reviewsUri or {@code null} for none
108+
*/
109+
public GoogleMapsPlacesV1PlaceReviewSummary setReviewsUri(java.lang.String reviewsUri) {
110+
this.reviewsUri = reviewsUri;
111+
return this;
112+
}
113+
90114
/**
91115
* The summary of user reviews.
92116
* @return value or {@code null} for none

‎clients/google-api-services-places/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-places</artifactId>
11-
<version>v1-rev20250504-2.0.0</version>
12-
<name>Places API (New) v1-rev20250504-2.0.0</name>
11+
<version>v1-rev20250506-2.0.0</version>
12+
<name>Places API (New) v1-rev20250506-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)
Please sign in to comment.