Skip to content

Commit 676e07c

Browse files
1 parent 4242993 commit 676e07c

File tree

6 files changed

+122
-104
lines changed

6 files changed

+122
-104
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-rev20250312-2.0.0</version>
25+
<version>v1-rev20250318-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-rev20250312-2.0.0'
38+
implementation 'com.google.apis:google-api-services-places:v1-rev20250318-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: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,14 @@ public final class GoogleMapsPlacesV1Place extends com.google.api.client.json.Ge
396396
/**
397397
* The regular hours of operation. Note that if a place is always open (24 hours), the `close`
398398
* field will not be set. Clients can rely on always open (24 hours) being represented as an
399-
* `open` period containing `day` with value `0`, `hour` with value `0`, and `minute` with value
400-
* `0`.
399+
* [`open`](https://developers.google.com/maps/documentation/places/web-
400+
* service/reference/rest/v1/places#Period) period containing
401+
* [`day`](https://developers.google.com/maps/documentation/places/web-
402+
* service/reference/rest/v1/places#Point) with value `0`,
403+
* [`hour`](https://developers.google.com/maps/documentation/places/web-
404+
* service/reference/rest/v1/places#Point) with value `0`, and
405+
* [`minute`](https://developers.google.com/maps/documentation/places/web-
406+
* service/reference/rest/v1/places#Point) with value `0`.
401407
* The value may be {@code null}.
402408
*/
403409
@com.google.api.client.util.Key
@@ -513,7 +519,7 @@ public final class GoogleMapsPlacesV1Place extends com.google.api.client.json.Ge
513519
private java.lang.String shortFormattedAddress;
514520

515521
/**
516-
* A list of sub destinations related to the place.
522+
* A list of sub-destinations related to the place.
517523
* The value may be {@code null}.
518524
*/
519525
@com.google.api.client.util.Key
@@ -1432,8 +1438,14 @@ public GoogleMapsPlacesV1Place setRating(java.lang.Double rating) {
14321438
/**
14331439
* The regular hours of operation. Note that if a place is always open (24 hours), the `close`
14341440
* field will not be set. Clients can rely on always open (24 hours) being represented as an
1435-
* `open` period containing `day` with value `0`, `hour` with value `0`, and `minute` with value
1436-
* `0`.
1441+
* [`open`](https://developers.google.com/maps/documentation/places/web-
1442+
* service/reference/rest/v1/places#Period) period containing
1443+
* [`day`](https://developers.google.com/maps/documentation/places/web-
1444+
* service/reference/rest/v1/places#Point) with value `0`,
1445+
* [`hour`](https://developers.google.com/maps/documentation/places/web-
1446+
* service/reference/rest/v1/places#Point) with value `0`, and
1447+
* [`minute`](https://developers.google.com/maps/documentation/places/web-
1448+
* service/reference/rest/v1/places#Point) with value `0`.
14371449
* @return value or {@code null} for none
14381450
*/
14391451
public GoogleMapsPlacesV1PlaceOpeningHours getRegularOpeningHours() {
@@ -1443,8 +1455,14 @@ public GoogleMapsPlacesV1PlaceOpeningHours getRegularOpeningHours() {
14431455
/**
14441456
* The regular hours of operation. Note that if a place is always open (24 hours), the `close`
14451457
* field will not be set. Clients can rely on always open (24 hours) being represented as an
1446-
* `open` period containing `day` with value `0`, `hour` with value `0`, and `minute` with value
1447-
* `0`.
1458+
* [`open`](https://developers.google.com/maps/documentation/places/web-
1459+
* service/reference/rest/v1/places#Period) period containing
1460+
* [`day`](https://developers.google.com/maps/documentation/places/web-
1461+
* service/reference/rest/v1/places#Point) with value `0`,
1462+
* [`hour`](https://developers.google.com/maps/documentation/places/web-
1463+
* service/reference/rest/v1/places#Point) with value `0`, and
1464+
* [`minute`](https://developers.google.com/maps/documentation/places/web-
1465+
* service/reference/rest/v1/places#Point) with value `0`.
14481466
* @param regularOpeningHours regularOpeningHours or {@code null} for none
14491467
*/
14501468
public GoogleMapsPlacesV1Place setRegularOpeningHours(GoogleMapsPlacesV1PlaceOpeningHours regularOpeningHours) {
@@ -1716,15 +1734,15 @@ public GoogleMapsPlacesV1Place setShortFormattedAddress(java.lang.String shortFo
17161734
}
17171735

17181736
/**
1719-
* A list of sub destinations related to the place.
1737+
* A list of sub-destinations related to the place.
17201738
* @return value or {@code null} for none
17211739
*/
17221740
public java.util.List<GoogleMapsPlacesV1PlaceSubDestination> getSubDestinations() {
17231741
return subDestinations;
17241742
}
17251743

17261744
/**
1727-
* A list of sub destinations related to the place.
1745+
* A list of sub-destinations related to the place.
17281746
* @param subDestinations subDestinations or {@code null} for none
17291747
*/
17301748
public GoogleMapsPlacesV1Place setSubDestinations(java.util.List<GoogleMapsPlacesV1PlaceSubDestination> subDestinations) {

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818

1919
/**
2020
* Sub-destinations are specific places associated with a main place. These provide more specific
21-
* destinations for users who are searching inside a large or complex place, like an airport,
21+
* destinations for users who are searching within a large or complex place, like an airport,
2222
* national park, university, or stadium. For example, sub-destinations at an airport might include
2323
* associated terminals and parking lots. Sub-destinations return the place ID and place resource
24-
* name, which can be used in subsequent Place Details (new) requests to fetch richer details,
24+
* name, which can be used in subsequent Place Details (New) requests to fetch richer details,
2525
* including the sub-destination's display name and location.
2626
*
2727
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
@@ -35,29 +35,29 @@
3535
public final class GoogleMapsPlacesV1PlaceSubDestination extends com.google.api.client.json.GenericJson {
3636

3737
/**
38-
* The place id of the sub destination.
38+
* The place id of the sub-destination.
3939
* The value may be {@code null}.
4040
*/
4141
@com.google.api.client.util.Key
4242
private java.lang.String id;
4343

4444
/**
45-
* The resource name of the sub destination.
45+
* The resource name of the sub-destination.
4646
* The value may be {@code null}.
4747
*/
4848
@com.google.api.client.util.Key
4949
private java.lang.String name;
5050

5151
/**
52-
* The place id of the sub destination.
52+
* The place id of the sub-destination.
5353
* @return value or {@code null} for none
5454
*/
5555
public java.lang.String getId() {
5656
return id;
5757
}
5858

5959
/**
60-
* The place id of the sub destination.
60+
* The place id of the sub-destination.
6161
* @param id id or {@code null} for none
6262
*/
6363
public GoogleMapsPlacesV1PlaceSubDestination setId(java.lang.String id) {
@@ -66,15 +66,15 @@ public GoogleMapsPlacesV1PlaceSubDestination setId(java.lang.String id) {
6666
}
6767

6868
/**
69-
* The resource name of the sub destination.
69+
* The resource name of the sub-destination.
7070
* @return value or {@code null} for none
7171
*/
7272
public java.lang.String getName() {
7373
return name;
7474
}
7575

7676
/**
77-
* The resource name of the sub destination.
77+
* The resource name of the sub-destination.
7878
* @param name name or {@code null} for none
7979
*/
8080
public GoogleMapsPlacesV1PlaceSubDestination setName(java.lang.String name) {

0 commit comments

Comments
 (0)