Skip to content

Commit b44e922

Browse files
1 parent 77fcf5e commit b44e922

File tree

5 files changed

+35
-27
lines changed

5 files changed

+35
-27
lines changed

clients/google-api-services-fitness/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-fitness</artifactId>
25-
<version>v1-rev20231107-2.0.0</version>
25+
<version>v1-rev20250819-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-fitness:v1-rev20231107-2.0.0'
38+
implementation 'com.google.apis:google-api-services-fitness:v1-rev20250819-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-fitness/v1/2.0.0/com/google/api/services/fitness/Fitness.java

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2269,25 +2269,27 @@ public List setActivityType(java.util.List<java.lang.Integer> activityType) {
22692269
}
22702270

22712271
/**
2272-
* An RFC3339 timestamp. Only sessions ending between the start and end times will be
2273-
* included in the response. If this time is omitted but startTime is specified, all
2274-
* sessions from startTime to the end of time will be returned.
2272+
* An RFC3339 timestamp. Only sessions starting before endTime and ending after startTime up
2273+
* to (endTime + 1 day) will be included in the response. If this time is omitted but
2274+
* startTime is specified, all sessions ending after startTime to the end of time will be
2275+
* returned.
22752276
*/
22762277
@com.google.api.client.util.Key
22772278
private java.lang.String endTime;
22782279

2279-
/** An RFC3339 timestamp. Only sessions ending between the start and end times will be included in the
2280-
response. If this time is omitted but startTime is specified, all sessions from startTime to the
2281-
end of time will be returned.
2280+
/** An RFC3339 timestamp. Only sessions starting before endTime and ending after startTime up to
2281+
(endTime + 1 day) will be included in the response. If this time is omitted but startTime is
2282+
specified, all sessions ending after startTime to the end of time will be returned.
22822283
*/
22832284
public java.lang.String getEndTime() {
22842285
return endTime;
22852286
}
22862287

22872288
/**
2288-
* An RFC3339 timestamp. Only sessions ending between the start and end times will be
2289-
* included in the response. If this time is omitted but startTime is specified, all
2290-
* sessions from startTime to the end of time will be returned.
2289+
* An RFC3339 timestamp. Only sessions starting before endTime and ending after startTime up
2290+
* to (endTime + 1 day) will be included in the response. If this time is omitted but
2291+
* startTime is specified, all sessions ending after startTime to the end of time will be
2292+
* returned.
22912293
*/
22922294
public List setEndTime(java.lang.String endTime) {
22932295
this.endTime = endTime;
@@ -2348,25 +2350,28 @@ public List setPageToken(java.lang.String pageToken) {
23482350
}
23492351

23502352
/**
2351-
* An RFC3339 timestamp. Only sessions ending between the start and end times will be
2352-
* included in the response. If this time is omitted but endTime is specified, all sessions
2353-
* from the start of time up to endTime will be returned.
2353+
* An RFC3339 timestamp. Only sessions starting before endTime and ending after startTime up
2354+
* to (endTime + 1 day) will be included in the response. If this time is omitted but
2355+
* endTime is specified, all sessions starting before endTime and ending after the start of
2356+
* time up to (endTime + 1 day) will be returned.
23542357
*/
23552358
@com.google.api.client.util.Key
23562359
private java.lang.String startTime;
23572360

2358-
/** An RFC3339 timestamp. Only sessions ending between the start and end times will be included in the
2359-
response. If this time is omitted but endTime is specified, all sessions from the start of time up
2360-
to endTime will be returned.
2361+
/** An RFC3339 timestamp. Only sessions starting before endTime and ending after startTime up to
2362+
(endTime + 1 day) will be included in the response. If this time is omitted but endTime is
2363+
specified, all sessions starting before endTime and ending after the start of time up to (endTime +
2364+
1 day) will be returned.
23612365
*/
23622366
public java.lang.String getStartTime() {
23632367
return startTime;
23642368
}
23652369

23662370
/**
2367-
* An RFC3339 timestamp. Only sessions ending between the start and end times will be
2368-
* included in the response. If this time is omitted but endTime is specified, all sessions
2369-
* from the start of time up to endTime will be returned.
2371+
* An RFC3339 timestamp. Only sessions starting before endTime and ending after startTime up
2372+
* to (endTime + 1 day) will be included in the response. If this time is omitted but
2373+
* endTime is specified, all sessions starting before endTime and ending after the start of
2374+
* time up to (endTime + 1 day) will be returned.
23702375
*/
23712376
public List setStartTime(java.lang.String startTime) {
23722377
this.startTime = startTime;

clients/google-api-services-fitness/v1/2.0.0/com/google/api/services/fitness/model/ListSessionsResponse.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ public final class ListSessionsResponse extends com.google.api.client.json.Gener
5454
private java.lang.String nextPageToken;
5555

5656
/**
57-
* Sessions with an end time that is between startTime and endTime of the request.
57+
* Sessions starting before endTime of the request and ending after startTime of the request up to
58+
* (endTime of the request + 1 day).
5859
* The value may be {@code null}.
5960
*/
6061
@com.google.api.client.util.Key
@@ -118,15 +119,17 @@ public ListSessionsResponse setNextPageToken(java.lang.String nextPageToken) {
118119
}
119120

120121
/**
121-
* Sessions with an end time that is between startTime and endTime of the request.
122+
* Sessions starting before endTime of the request and ending after startTime of the request up to
123+
* (endTime of the request + 1 day).
122124
* @return value or {@code null} for none
123125
*/
124126
public java.util.List<Session> getSession() {
125127
return session;
126128
}
127129

128130
/**
129-
* Sessions with an end time that is between startTime and endTime of the request.
131+
* Sessions starting before endTime of the request and ending after startTime of the request up to
132+
* (endTime of the request + 1 day).
130133
* @param session session or {@code null} for none
131134
*/
132135
public ListSessionsResponse setSession(java.util.List<Session> session) {

clients/google-api-services-fitness/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-fitness</artifactId>
11-
<version>v1-rev20231107-2.0.0</version>
12-
<name>Fitness API v1-rev20231107-2.0.0</name>
11+
<version>v1-rev20250819-2.0.0</version>
12+
<name>Fitness API v1-rev20250819-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-fitness/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-fitness</artifactId>
25-
<version>v1-rev20231107-2.0.0</version>
25+
<version>v1-rev20250819-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-fitness:v1-rev20231107-2.0.0'
38+
implementation 'com.google.apis:google-api-services-fitness:v1-rev20250819-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)