Returns the entries Resource.
Close httplib2 connections.
Gets a transcript by transcript ID.
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists the set of transcripts from the conference record. By default, ordered by start time and in ascending order.
Retrieves the next page of results.
close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets a transcript by transcript ID. Args: name: string, Required. Resource name of the transcript. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Metadata for a transcript generated from a conference. It refers to the ASR (Automatic Speech Recognition) result of user's speech during the conference. "docsDestination": { # Google Docs location where the transcript file is saved. # Output only. Where the Google Docs transcript is saved. "document": "A 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": "A 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. }, "endTime": "A String", # Output only. Timestamp when the transcript stopped. "name": "A String", # 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. "startTime": "A String", # Output only. Timestamp when the transcript started. "state": "A String", # Output only. Current state. }
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists the set of transcripts from the conference record. By default, ordered by start time and in ascending order. Args: parent: string, Required. Format: `conferenceRecords/{conference_record}` (required) pageSize: integer, Maximum number of transcripts to return. The service might return fewer than this value. If unspecified, at most 10 transcripts 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 ListTranscripts method. "nextPageToken": "A String", # Token to be circulated back for further List call if current List doesn't include all the transcripts. Unset if all transcripts are returned. "transcripts": [ # List of transcripts in one page. { # Metadata for a transcript generated from a conference. It refers to the ASR (Automatic Speech Recognition) result of user's speech during the conference. "docsDestination": { # Google Docs location where the transcript file is saved. # Output only. Where the Google Docs transcript is saved. "document": "A 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": "A 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. }, "endTime": "A String", # Output only. Timestamp when the transcript stopped. "name": "A String", # 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. "startTime": "A String", # Output only. Timestamp when the transcript started. "state": "A String", # Output only. Current state. }, ], }
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.