Google Meet API . conferenceRecords . transcripts . entries

Instance Methods

close()

Close httplib2 connections.

get(name, x__xgafv=None)

Gets a `TranscriptEntry` resource by entry ID. Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when the Google Docs transcript file is modified after generation.

list(parent, pageSize=None, pageToken=None, x__xgafv=None)

Lists the structured transcript entries per transcript. By default, ordered by start time and in ascending order. Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when the Google Docs transcript file is modified after generation.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets a `TranscriptEntry` resource by entry ID. Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when the Google Docs transcript file is modified after generation.

Args:
  name: string, Required. Resource name of the `TranscriptEntry`. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Single entry for one user’s speech during a transcript session.
  "endTime": "A String", # Output only. Timestamp when the transcript entry ended.
  "languageCode": "A String", # Output only. Language of spoken text, such as "en-US". IETF BCP 47 syntax (https://tools.ietf.org/html/bcp47)
  "name": "A String", # Output only. Resource name of the entry. Format: "conferenceRecords/{conference_record}/transcripts/{transcript}/entries/{entry}"
  "participant": "A String", # Output only. Refers to the participant who speaks.
  "startTime": "A String", # Output only. Timestamp when the transcript entry started.
  "text": "A String", # Output only. The transcribed text of the participant's voice, at maximum 10K words. Note that the limit is subject to change.
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists the structured transcript entries per transcript. By default, ordered by start time and in ascending order. Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when the Google Docs transcript file is modified after generation.

Args:
  parent: string, Required. Format: `conferenceRecords/{conference_record}/transcripts/{transcript}` (required)
  pageSize: integer, Maximum number of entries to return. The service might return fewer than this value. If unspecified, at most 10 entries are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.
  pageToken: string, Page token returned from previous List Call.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response for ListTranscriptEntries method.
  "nextPageToken": "A String", # Token to be circulated back for further List call if current List doesn't include all the transcript entries. Unset if all entries are returned.
  "transcriptEntries": [ # List of TranscriptEntries in one page.
    { # Single entry for one user’s speech during a transcript session.
      "endTime": "A String", # Output only. Timestamp when the transcript entry ended.
      "languageCode": "A String", # Output only. Language of spoken text, such as "en-US". IETF BCP 47 syntax (https://tools.ietf.org/html/bcp47)
      "name": "A String", # Output only. Resource name of the entry. Format: "conferenceRecords/{conference_record}/transcripts/{transcript}/entries/{entry}"
      "participant": "A String", # Output only. Refers to the participant who speaks.
      "startTime": "A String", # Output only. Timestamp when the transcript entry started.
      "text": "A String", # Output only. The transcribed text of the participant's voice, at maximum 10K words. Note that the limit is subject to change.
    },
  ],
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.