You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-places/v1/2.0.0/com/google/api/services/places/v1/model/GoogleMapsPlacesV1Place.java
+63Lines changed: 63 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -284,6 +284,25 @@ public final class GoogleMapsPlacesV1Place extends com.google.api.client.json.Ge
284
284
@com.google.api.client.util.Key
285
285
privatejava.lang.BooleanmenuForChildren;
286
286
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
+
privatejava.lang.StringmovedPlace;
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
+
privatejava.lang.StringmovedPlaceId;
305
+
287
306
/**
288
307
* This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place.
289
308
* The value may be {@code null}.
@@ -1212,6 +1231,50 @@ public GoogleMapsPlacesV1Place setMenuForChildren(java.lang.Boolean menuForChild
1212
1231
returnthis;
1213
1232
}
1214
1233
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
+
publicjava.lang.StringgetMovedPlace() {
1242
+
returnmovedPlace;
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
0 commit comments