Skip to content

Commit b9c8f3a

Browse files
1 parent 39a5804 commit b9c8f3a

File tree

4 files changed

+27
-21
lines changed

4 files changed

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

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

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,8 @@ public final class GoogleMapsPlacesV1PlaceOpeningHours extends com.google.api.cl
5656
private java.lang.Boolean openNow;
5757

5858
/**
59-
* The periods that this place is open during the week. The periods are in chronological order,
60-
* starting with Sunday in the place-local timezone. An empty (but not absent) value indicates a
61-
* place that is never open, e.g. because it is closed temporarily for renovations.
59+
* NOTE: The ordering of the `periods` array is independent of the ordering of the
60+
* `weekday_descriptions` array. Do not assume they will begin on the same day.
6261
* The value may be {@code null}.
6362
*/
6463
@com.google.api.client.util.Key
@@ -83,8 +82,11 @@ public final class GoogleMapsPlacesV1PlaceOpeningHours extends com.google.api.cl
8382

8483
/**
8584
* Localized strings describing the opening hours of this place, one string for each day of the
86-
* week. Will be empty if the hours are unknown or could not be converted to localized text.
87-
* Example: "Sun: 18:00–06:00"
85+
* week. NOTE: The order of the days and the start of the week is determined by the locale
86+
* (language and region). The ordering of the `periods` array is independent of the ordering of
87+
* the `weekday_descriptions` array. Do not assume they will begin on the same day. Will be empty
88+
* if the hours are unknown or could not be converted to localized text. Example: "Sun:
89+
* 18:00–06:00"
8890
* The value may be {@code null}.
8991
*/
9092
@com.google.api.client.util.Key
@@ -152,19 +154,17 @@ public GoogleMapsPlacesV1PlaceOpeningHours setOpenNow(java.lang.Boolean openNow)
152154
}
153155

154156
/**
155-
* The periods that this place is open during the week. The periods are in chronological order,
156-
* starting with Sunday in the place-local timezone. An empty (but not absent) value indicates a
157-
* place that is never open, e.g. because it is closed temporarily for renovations.
157+
* NOTE: The ordering of the `periods` array is independent of the ordering of the
158+
* `weekday_descriptions` array. Do not assume they will begin on the same day.
158159
* @return value or {@code null} for none
159160
*/
160161
public java.util.List<GoogleMapsPlacesV1PlaceOpeningHoursPeriod> getPeriods() {
161162
return periods;
162163
}
163164

164165
/**
165-
* The periods that this place is open during the week. The periods are in chronological order,
166-
* starting with Sunday in the place-local timezone. An empty (but not absent) value indicates a
167-
* place that is never open, e.g. because it is closed temporarily for renovations.
166+
* NOTE: The ordering of the `periods` array is independent of the ordering of the
167+
* `weekday_descriptions` array. Do not assume they will begin on the same day.
168168
* @param periods periods or {@code null} for none
169169
*/
170170
public GoogleMapsPlacesV1PlaceOpeningHours setPeriods(java.util.List<GoogleMapsPlacesV1PlaceOpeningHoursPeriod> periods) {
@@ -214,8 +214,11 @@ public GoogleMapsPlacesV1PlaceOpeningHours setSpecialDays(java.util.List<GoogleM
214214

215215
/**
216216
* Localized strings describing the opening hours of this place, one string for each day of the
217-
* week. Will be empty if the hours are unknown or could not be converted to localized text.
218-
* Example: "Sun: 18:00–06:00"
217+
* week. NOTE: The order of the days and the start of the week is determined by the locale
218+
* (language and region). The ordering of the `periods` array is independent of the ordering of
219+
* the `weekday_descriptions` array. Do not assume they will begin on the same day. Will be empty
220+
* if the hours are unknown or could not be converted to localized text. Example: "Sun:
221+
* 18:00–06:00"
219222
* @return value or {@code null} for none
220223
*/
221224
public java.util.List<java.lang.String> getWeekdayDescriptions() {
@@ -224,8 +227,11 @@ public java.util.List<java.lang.String> getWeekdayDescriptions() {
224227

225228
/**
226229
* Localized strings describing the opening hours of this place, one string for each day of the
227-
* week. Will be empty if the hours are unknown or could not be converted to localized text.
228-
* Example: "Sun: 18:00–06:00"
230+
* week. NOTE: The order of the days and the start of the week is determined by the locale
231+
* (language and region). The ordering of the `periods` array is independent of the ordering of
232+
* the `weekday_descriptions` array. Do not assume they will begin on the same day. Will be empty
233+
* if the hours are unknown or could not be converted to localized text. Example: "Sun:
234+
* 18:00–06:00"
229235
* @param weekdayDescriptions weekdayDescriptions or {@code null} for none
230236
*/
231237
public GoogleMapsPlacesV1PlaceOpeningHours setWeekdayDescriptions(java.util.List<java.lang.String> weekdayDescriptions) {

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

0 commit comments

Comments
 (0)