Skip to content

Commit 5adc384

Browse files
1 parent aa33b90 commit 5adc384

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
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-rev20241106-2.0.0</version>
25+
<version>v1-rev20241117-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-rev20241106-2.0.0'
38+
implementation 'com.google.apis:google-api-services-places:v1-rev20241117-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: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,9 @@ public final class GoogleMapsPlacesV1Place extends com.google.api.client.json.Ge
387387
private java.lang.Double rating;
388388

389389
/**
390-
* The regular hours of operation.
390+
* The regular hours of operation. Note that if a place is always open (24 hours), the `close`
391+
* field will not be set. Clients can rely on always open (24 hours) being represented as an
392+
* `open` period containing day with value `0`, hour with value `0`, and minute with value `0`.
391393
* The value may be {@code null}.
392394
*/
393395
@com.google.api.client.util.Key
@@ -1396,15 +1398,19 @@ public GoogleMapsPlacesV1Place setRating(java.lang.Double rating) {
13961398
}
13971399

13981400
/**
1399-
* The regular hours of operation.
1401+
* The regular hours of operation. Note that if a place is always open (24 hours), the `close`
1402+
* field will not be set. Clients can rely on always open (24 hours) being represented as an
1403+
* `open` period containing day with value `0`, hour with value `0`, and minute with value `0`.
14001404
* @return value or {@code null} for none
14011405
*/
14021406
public GoogleMapsPlacesV1PlaceOpeningHours getRegularOpeningHours() {
14031407
return regularOpeningHours;
14041408
}
14051409

14061410
/**
1407-
* The regular hours of operation.
1411+
* The regular hours of operation. Note that if a place is always open (24 hours), the `close`
1412+
* field will not be set. Clients can rely on always open (24 hours) being represented as an
1413+
* `open` period containing day with value `0`, hour with value `0`, and minute with value `0`.
14081414
* @param regularOpeningHours regularOpeningHours or {@code null} for none
14091415
*/
14101416
public GoogleMapsPlacesV1Place setRegularOpeningHours(GoogleMapsPlacesV1PlaceOpeningHours regularOpeningHours) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ public final class GoogleMapsPlacesV1PlaceOpeningHoursPeriodPoint extends com.go
4444
private java.lang.Integer day;
4545

4646
/**
47-
* The hour in 2 digits. Ranges from 00 to 23.
47+
* The hour in 24 hour format. Ranges from 0 to 23.
4848
* The value may be {@code null}.
4949
*/
5050
@com.google.api.client.util.Key
5151
private java.lang.Integer hour;
5252

5353
/**
54-
* The minute in 2 digits. Ranges from 00 to 59.
54+
* The minute. Ranges from 0 to 59.
5555
* The value may be {@code null}.
5656
*/
5757
@com.google.api.client.util.Key
@@ -102,15 +102,15 @@ public GoogleMapsPlacesV1PlaceOpeningHoursPeriodPoint setDay(java.lang.Integer d
102102
}
103103

104104
/**
105-
* The hour in 2 digits. Ranges from 00 to 23.
105+
* The hour in 24 hour format. Ranges from 0 to 23.
106106
* @return value or {@code null} for none
107107
*/
108108
public java.lang.Integer getHour() {
109109
return hour;
110110
}
111111

112112
/**
113-
* The hour in 2 digits. Ranges from 00 to 23.
113+
* The hour in 24 hour format. Ranges from 0 to 23.
114114
* @param hour hour or {@code null} for none
115115
*/
116116
public GoogleMapsPlacesV1PlaceOpeningHoursPeriodPoint setHour(java.lang.Integer hour) {
@@ -119,15 +119,15 @@ public GoogleMapsPlacesV1PlaceOpeningHoursPeriodPoint setHour(java.lang.Integer
119119
}
120120

121121
/**
122-
* The minute in 2 digits. Ranges from 00 to 59.
122+
* The minute. Ranges from 0 to 59.
123123
* @return value or {@code null} for none
124124
*/
125125
public java.lang.Integer getMinute() {
126126
return minute;
127127
}
128128

129129
/**
130-
* The minute in 2 digits. Ranges from 00 to 59.
130+
* The minute. Ranges from 0 to 59.
131131
* @param minute minute or {@code null} for none
132132
*/
133133
public GoogleMapsPlacesV1PlaceOpeningHoursPeriodPoint setMinute(java.lang.Integer minute) {

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-rev20241106-2.0.0</version>
12-
<name>Places API (New) v1-rev20241106-2.0.0</name>
11+
<version>v1-rev20241117-2.0.0</version>
12+
<name>Places API (New) v1-rev20241117-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-rev20241106-2.0.0</version>
25+
<version>v1-rev20241117-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-rev20241106-2.0.0'
38+
implementation 'com.google.apis:google-api-services-places:v1-rev20241117-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)