Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/oura_api/mod.ts>EnhancedTag

Typescript project to interact with v2 of the Oura Ring API
Latest
interface EnhancedTag
import { type EnhancedTag } from "https://deno.land/x/oura_api@1.0.1/mod.ts";

Represents an extended, multi-day tag with optional comments.

Properties

id: string

Unique identifier

tag_type_code: string | null

The unique code of the selected tag type, "NULL" for text-only tags, or "custom" for custom tag types

start_time: string

Timestamp of the tag (if no duration) or the start time of the tag (with duration)

end_time: string | null

Timestamp of the tag's end for events with duration or "NULL" if there is no duration

start_day: string

Day of the tag (if no duration) or the start day of the tag (with duration)

end_day: string | null

Day of the tag's end for events with duration or "NULL" if there is no duration

comment: string | null

Additional freeform text on the tag

custom_name: string | null

The name of the tag if the tag_type_code is "custom".