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

SessionTimeInterval

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

Represents a time interval of session data point, which bundles multiple observed metrics together.

interface SessionTimeInterval {
readonly civilEndTime?: CivilDateTime;
readonly civilStartTime?: CivilDateTime;
endTime?: Date;
endUtcOffset?: number;
startTime?: Date;
startUtcOffset?: number;
}

§Properties

§
readonly civilEndTime?: CivilDateTime
[src]

Output only. Session end time in civil time in the timezone the subject is in at the end of the session.

§
readonly civilStartTime?: CivilDateTime
[src]

Output only. Session start time in civil time in the timezone the subject is in at the start of the session.

§
endTime?: Date
[src]

Required. The end time of the observed session.

§
endUtcOffset?: number
[src]

Required. The offset of the user's local time at the end of the session relative to the Coordinated Universal Time (UTC).

§
startTime?: Date
[src]

Required. The start time of the observed session.

§
startUtcOffset?: number
[src]

Required. The offset of the user's local time at the start of the session relative to the Coordinated Universal Time (UTC).