Skip to content

Commit fce14cf

Browse files
1 parent 57f70bd commit fce14cf

File tree

4 files changed

+69
-6
lines changed

4 files changed

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

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

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,25 @@ public final class GoogleMapsPlacesV1Place extends com.google.api.client.json.Ge
284284
@com.google.api.client.util.Key
285285
private java.lang.Boolean menuForChildren;
286286

287+
/**
288+
* If this Place is permanently closed and has moved to a new Place, this field contains the new
289+
* Place's resource name, in `places/{place_id}` format. If this Place moved multiple times, this
290+
* field will represent the first moved place. This field will not be populated if this Place has
291+
* not moved.
292+
* The value may be {@code null}.
293+
*/
294+
@com.google.api.client.util.Key
295+
private java.lang.String movedPlace;
296+
297+
/**
298+
* If this Place is permanently closed and has moved to a new Place, this field contains the new
299+
* Place's place ID. If this Place moved multiple times, this field will represent the first moved
300+
* Place. This field will not be populated if this Place has not moved.
301+
* The value may be {@code null}.
302+
*/
303+
@com.google.api.client.util.Key
304+
private java.lang.String movedPlaceId;
305+
287306
/**
288307
* This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place.
289308
* The value may be {@code null}.
@@ -1212,6 +1231,50 @@ public GoogleMapsPlacesV1Place setMenuForChildren(java.lang.Boolean menuForChild
12121231
return this;
12131232
}
12141233

1234+
/**
1235+
* If this Place is permanently closed and has moved to a new Place, this field contains the new
1236+
* Place's resource name, in `places/{place_id}` format. If this Place moved multiple times, this
1237+
* field will represent the first moved place. This field will not be populated if this Place has
1238+
* not moved.
1239+
* @return value or {@code null} for none
1240+
*/
1241+
public java.lang.String getMovedPlace() {
1242+
return movedPlace;
1243+
}
1244+
1245+
/**
1246+
* If this Place is permanently closed and has moved to a new Place, this field contains the new
1247+
* Place's resource name, in `places/{place_id}` format. If this Place moved multiple times, this
1248+
* field will represent the first moved place. This field will not be populated if this Place has
1249+
* not moved.
1250+
* @param movedPlace movedPlace or {@code null} for none
1251+
*/
1252+
public GoogleMapsPlacesV1Place setMovedPlace(java.lang.String movedPlace) {
1253+
this.movedPlace = movedPlace;
1254+
return this;
1255+
}
1256+
1257+
/**
1258+
* If this Place is permanently closed and has moved to a new Place, this field contains the new
1259+
* Place's place ID. If this Place moved multiple times, this field will represent the first moved
1260+
* Place. This field will not be populated if this Place has not moved.
1261+
* @return value or {@code null} for none
1262+
*/
1263+
public java.lang.String getMovedPlaceId() {
1264+
return movedPlaceId;
1265+
}
1266+
1267+
/**
1268+
* If this Place is permanently closed and has moved to a new Place, this field contains the new
1269+
* Place's place ID. If this Place moved multiple times, this field will represent the first moved
1270+
* Place. This field will not be populated if this Place has not moved.
1271+
* @param movedPlaceId movedPlaceId or {@code null} for none
1272+
*/
1273+
public GoogleMapsPlacesV1Place setMovedPlaceId(java.lang.String movedPlaceId) {
1274+
this.movedPlaceId = movedPlaceId;
1275+
return this;
1276+
}
1277+
12151278
/**
12161279
* This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place.
12171280
* @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-rev20251007-2.0.0</version>
12-
<name>Places API (New) v1-rev20251007-2.0.0</name>
11+
<version>v1-rev20251019-2.0.0</version>
12+
<name>Places API (New) v1-rev20251019-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-rev20251007-2.0.0</version>
25+
<version>v1-rev20251019-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-rev20251007-2.0.0'
38+
implementation 'com.google.apis:google-api-services-places:v1-rev20251019-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)