Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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.

§
date?: Date
[src]

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

§
estimated?: boolean
[src]

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

§
vo2Max?: number
[src]

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

§
vo2MaxCovariance?: number
[src]

Optional. The covariance of the VO2 max value.