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

SmartNote

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

Metadata for a smart note generated from a conference. It refers to the notes generated from Take Notes with Gemini during the conference.

interface SmartNote {
readonly docsDestination?: DocsDestination;
readonly endTime?: Date;
readonly name?: string;
readonly startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "STARTED"
| "ENDED"
| "FILE_GENERATED";
}

§Properties

§
readonly docsDestination?: DocsDestination
[src]

Output only. The Google Doc destination where the smart notes are saved.

§
readonly endTime?: Date
[src]

Output only. Timestamp when the smart notes stopped.

§
readonly name?: string
[src]

Output only. Identifier. Resource name of the smart notes. Format: conferenceRecords/{conference_record}/smartNotes/{smart_note}, where {smart_note} is a 1:1 mapping to each unique smart notes session of the conference.

§
readonly startTime?: Date
[src]

Output only. Timestamp when the smart notes started.

§
readonly state?: "STATE_UNSPECIFIED" | "STARTED" | "ENDED" | "FILE_GENERATED"
[src]

Output only. Current state.