Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-health/v4/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-health</artifactId>
<version>v4-rev20260803-2.0.0</version>
<version>v4-rev20260804-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-health:v4-rev20260803-2.0.0'
implementation 'com.google.apis:google-api-services-health:v4-rev20260804-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ public final class Settings extends com.google.api.client.json.GenericJson {
private java.lang.Boolean autoStrideEnabled;

/**
* Optional. The measurement unit defined in the user's account settings. Updates to this field
* are currently not supported.
* Optional. The measurement unit defined in the user's account settings.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -168,17 +167,15 @@ public Settings setAutoStrideEnabled(java.lang.Boolean autoStrideEnabled) {
}

/**
* Optional. The measurement unit defined in the user's account settings. Updates to this field
* are currently not supported.
* Optional. The measurement unit defined in the user's account settings.
* @return value or {@code null} for none
*/
public java.lang.String getDistanceUnit() {
return distanceUnit;
}

/**
* Optional. The measurement unit defined in the user's account settings. Updates to this field
* are currently not supported.
* Optional. The measurement unit defined in the user's account settings.
* @param distanceUnit distanceUnit or {@code null} for none
*/
public Settings setDistanceUnit(java.lang.String distanceUnit) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ public final class Sleep extends com.google.api.client.json.GenericJson {
com.google.api.client.util.Data.nullOf(OutOfBedSegment.class);
}

/**
* Output only. List of short awake segments (under a set threshold) that are part of the sleep
* session. These can overlap with sleep stages.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<SleepStage> shortAwakenings;

/**
* Optional. List of non-overlapping contiguous sleep stage segments that cover the sleep period.
* The value may be {@code null}.
Expand Down Expand Up @@ -159,6 +167,25 @@ public Sleep setOutOfBedSegments(java.util.List<OutOfBedSegment> outOfBedSegment
return this;
}

/**
* Output only. List of short awake segments (under a set threshold) that are part of the sleep
* session. These can overlap with sleep stages.
* @return value or {@code null} for none
*/
public java.util.List<SleepStage> getShortAwakenings() {
return shortAwakenings;
}

/**
* Output only. List of short awake segments (under a set threshold) that are part of the sleep
* session. These can overlap with sleep stages.
* @param shortAwakenings shortAwakenings or {@code null} for none
*/
public Sleep setShortAwakenings(java.util.List<SleepStage> shortAwakenings) {
this.shortAwakenings = shortAwakenings;
return this;
}

/**
* Optional. List of non-overlapping contiguous sleep stage segments that cover the sleep period.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-health/v4/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-health</artifactId>
<version>v4-rev20260803-2.0.0</version>
<name>Google Health API v4-rev20260803-2.0.0</name>
<version>v4-rev20260804-2.0.0</version>
<name>Google Health API v4-rev20260804-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-health/v4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-health</artifactId>
<version>v4-rev20260803-2.0.0</version>
<version>v4-rev20260804-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-health:v4-rev20260803-2.0.0'
implementation 'com.google.apis:google-api-services-health:v4-rev20260804-2.0.0'
}
```

Expand Down
Loading