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

DailyOxygenSaturation

import type { DailyOxygenSaturation } from "https://googleapis.deno.dev/v1/health:v4.ts";

A daily oxygen saturation (SpO2) record. Represents the user's daily oxygen saturation summary, typically calculated during sleep.

interface DailyOxygenSaturation {
averagePercentage?: number;
date?: Date;
lowerBoundPercentage?: number;
standardDeviationPercentage?: number;
upperBoundPercentage?: number;
}

§Properties

§
averagePercentage?: number
[src]

Required. The average value of the oxygen saturation samples during the sleep.

§
date?: Date
[src]

Required. Date (in user's timezone) of the daily oxygen saturation record.

§
lowerBoundPercentage?: number
[src]

Required. The lower bound of the confidence interval of oxygen saturation samples during sleep.

§
standardDeviationPercentage?: number
[src]

Optional. Standard deviation of the daily oxygen saturation averages from the past 7-30 days.

§
upperBoundPercentage?: number
[src]

Required. The upper bound of the confidence interval of oxygen saturation samples during sleep.