/** * @example * { * cursor: "cursor", * nextCursor: "next_cursor", * provider: "provider", * startDate: "start_date", * endDate: "end_date" * } */ export interface VitalsNoteGroupedRequest { /** The cursor for fetching the next page, or `null` to fetch the first page. */ cursor?: string; /** The cursor for fetching the next page, or `null` to fetch the first page. */ nextCursor?: string; /** Provider oura/strava etc */ provider?: string; /** Date from in YYYY-MM-DD or ISO formatted date time. If a date is provided without a time, the time will be set to 00:00:00 */ startDate: string; /** Date to YYYY-MM-DD or ISO formatted date time. If a date is provided without a time, the time will be set to 23:59:59 */ endDate?: string; }