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

ConferenceRecord

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

Single instance of a meeting held in a space.

interface ConferenceRecord {
readonly endTime?: Date;
readonly expireTime?: Date;
name?: string;
readonly space?: string;
readonly startTime?: Date;
}

§Properties

§
readonly endTime?: Date
[src]

Output only. Timestamp when the conference ended. Set for past conferences. Unset if the conference is ongoing.

§
readonly expireTime?: Date
[src]

Output only. Server enforced expiration time for when this conference record resource is deleted. The resource is deleted 30 days after the conference ends.

§
name?: string
[src]

Identifier. Resource name of the conference record. Format: conferenceRecords/{conference_record} where {conference_record} is a unique ID for each instance of a call within a space.

§
readonly space?: string
[src]

Output only. The space where the conference was held.

§
readonly startTime?: Date
[src]

Output only. Timestamp when the conference started. Always set.