REST Resource: conferenceRecords.transcripts

Resource: Transcript

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

JSON representation
{
  "name": string,
  "state": enum (State),
  "startTime": string,
  "endTime": string,

  // Union field destination can be only one of the following:
  "docsDestination": {
    object (DocsDestination)
  }
  // End of list of possible types for union field destination.
}
Fields
name

string

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

state

enum (State)

Output only. Current state.

startTime

string (Timestamp format)

Output only. Timestamp when the transcript started.

endTime

string (Timestamp format)

Output only. Timestamp when the transcript stopped.

Union field destination.

destination can be only one of the following:

docsDestination

object (DocsDestination)

Output only. Where the Google Docs transcript is saved.

DocsDestination

Google Docs location where the transcript file is saved.

JSON representation
{
  "document": string,
  "exportUri": string
}
Fields
document

string

Output only. The document ID for the underlying Google Docs transcript file. For example, "1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use the documents.get method of the Google Docs API (https://developers.google.com/docs/api/reference/rest/v1/documents/get) to fetch the content.

exportUri

string

Output only. URI for the Google Docs transcript file. Use https://docs.google.com/document/d/{$DocumentId}/view to browse the transcript in the browser.

State

Current state of the transcript session.

Enums
STATE_UNSPECIFIED Default, never used.
STARTED An active transcript session has started.
ENDED This transcript session has ended, but the transcript file hasn't been generated yet.
FILE_GENERATED Transcript file is generated and ready to download.

Methods

get

Gets a transcript by transcript ID.

list

Lists the set of transcripts from the conference record.