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

Transcript

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

Metadata for a transcript generated from a conference. It refers to the ASR (Automatic Speech Recognition) result of user's speech during the conference.

interface Transcript {
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. Where the Google Docs transcript is saved.

§
readonly endTime?: Date
[src]

Output only. Timestamp when the transcript stopped.

§
readonly name?: string
[src]

Output only. Resource name of the transcript. Format: conferenceRecords/{conference_record}/transcripts/{transcript}, where {transcript} is a 1:1 mapping to each unique transcription session of the conference.

§
readonly startTime?: Date
[src]

Output only. Timestamp when the transcript started.

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

Output only. Current state.