DailyVO2Max
import type { DailyVO2Max } from "https://googleapis.deno.dev/v1/health:v4.ts";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.
interface DailyVO2Max {
cardioFitnessLevel?:
| "CARDIO_FITNESS_LEVEL_UNSPECIFIED"
| "POOR"
| "FAIR"
| "AVERAGE"
| "GOOD"
| "VERY_GOOD"
| "EXCELLENT";
date?: Date;
estimated?: boolean;
vo2Max?: number;
vo2MaxCovariance?: number;
}§Properties
§
cardioFitnessLevel?: "CARDIO_FITNESS_LEVEL_UNSPECIFIED" | "POOR" | "FAIR" | "AVERAGE" | "GOOD" | "VERY_GOOD" | "EXCELLENT"
[src]Optional. Represents the user's cardio fitness level based on their VO2 max.
§
estimated?: boolean
[src]Optional. An estimated field is added to indicate when the confidence has decreased sufficiently to consider the value an estimation.