Show / Hide Table of Contents

Class DailyVO2Max

Contains a daily summary of the user's VO2 max (cardio fitness score), which is the maximum rate of oxygen the body can use during exercise.

Inheritance
object
DailyVO2Max
Implements
IMessage<DailyVO2Max>
IEquatable<DailyVO2Max>
IDeepCloneable<DailyVO2Max>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.DevicesAndServices.Health.V4
Assembly: Google.DevicesAndServices.Health.V4.dll
Syntax
public sealed class DailyVO2Max : IMessage<DailyVO2Max>, IEquatable<DailyVO2Max>, IDeepCloneable<DailyVO2Max>, IBufferMessage, IMessage

Constructors

DailyVO2Max()

Declaration
public DailyVO2Max()

DailyVO2Max(DailyVO2Max)

Declaration
public DailyVO2Max(DailyVO2Max other)
Parameters
Type Name Description
DailyVO2Max other

Properties

CardioFitnessLevel

Optional. Represents the user's cardio fitness level based on their VO2 max.

Declaration
public DailyVO2Max.Types.CardioFitnessLevel CardioFitnessLevel { get; set; }
Property Value
Type Description
DailyVO2Max.Types.CardioFitnessLevel

Date

Required. The date for which the Daily VO2 max was measured.

Declaration
public Date Date { get; set; }
Property Value
Type Description
Date

Estimated

Optional. An estimated field is added to indicate when the confidence has decreased sufficiently to consider the value an estimation.

Declaration
public bool Estimated { get; set; }
Property Value
Type Description
bool

Vo2Max

Required. Daily VO2 max value measured as in ml consumed oxygen / kg of body weight / min.

Declaration
public double Vo2Max { get; set; }
Property Value
Type Description
double

Vo2MaxCovariance

Optional. The covariance of the VO2 max value.

Declaration
public double Vo2MaxCovariance { get; set; }
Property Value
Type Description
double
In this article
Back to top Generated by DocFX