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

ParticipantSession

import type { ParticipantSession } from "https://googleapis.deno.dev/v1/meet:v2.ts";

Refers to each unique join or leave session when a user joins a conference from a device. Note that any time a user joins the conference a new unique ID is assigned. That means if a user joins a space multiple times from the same device, they're assigned different IDs, and are also be treated as different participant sessions.

interface ParticipantSession {
readonly endTime?: Date;
name?: string;
readonly startTime?: Date;
}

§Properties

§
readonly endTime?: Date
[src]

Output only. Timestamp when the user session ends. Unset if the user session hasn’t ended.

§
name?: string
[src]

Identifier. Session id.

§
readonly startTime?: Date
[src]

Output only. Timestamp when the user session starts.