ActivityLevelRollupByActivityLevelType
import type { ActivityLevelRollupByActivityLevelType } from "https://googleapis.deno.dev/v1/health:v4.ts";Represents the total duration in a specific activity level type.
interface ActivityLevelRollupByActivityLevelType {
activityLevelType?:
| "ACTIVITY_LEVEL_TYPE_UNSPECIFIED"
| "SEDENTARY"
| "LIGHTLY_ACTIVE"
| "MODERATELY_ACTIVE"
| "VERY_ACTIVE";
totalDuration?: number;
}