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

Participant

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

User who attended or is attending a conference.

interface Participant {
anonymousUser?: AnonymousUser;
readonly earliestStartTime?: Date;
readonly latestEndTime?: Date;
readonly name?: string;
phoneUser?: PhoneUser;
signedinUser?: SignedinUser;
}

§Properties

§
anonymousUser?: AnonymousUser
[src]

Anonymous user.

§
readonly earliestStartTime?: Date
[src]

Output only. Time when the participant first joined the meeting.

§
readonly latestEndTime?: Date
[src]

Output only. Time when the participant left the meeting for the last time. This can be null if it's an active meeting.

§
readonly name?: string
[src]

Output only. Resource name of the participant. Format: conferenceRecords/{conference_record}/participants/{participant}

§
phoneUser?: PhoneUser
[src]

User calling from their phone.

§
signedinUser?: SignedinUser
[src]

Signed-in user.