Close httplib2 connections.
Gets smart notes by smart note ID.
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists the set of smart notes from the conference record. By default, ordered by start time and in ascending order.
list_next(previous_request, previous_response)
Retrieves the next page of results.
close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets smart notes by smart note ID.
Args:
name: string, Required. Resource name of the smart note. Format: conferenceRecords/{conference_record}/smartNotes/{smart_note} (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 smart note generated from a conference. It refers to the notes generated from Take Notes with Gemini during the conference.
"docsDestination": { # Google Docs location where the transcript file is saved. # Output only. The Google Doc destination where the smart notes are 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 smart notes stopped.
"name": "A String", # 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.
"startTime": "A String", # Output only. Timestamp when the smart notes started.
"state": "A String", # Output only. Current state.
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists the set of smart notes 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, Optional. Maximum number of smart notes to return. The service might return fewer than this value. If unspecified, at most 10 smart notes are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.
pageToken: string, Optional. 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 ListSmartNotes method.
"nextPageToken": "A String", # Token to be circulated back for further List call if current List doesn't include all the smart notes. Unset if all smart notes are returned.
"smartNotes": [ # List of smart notes in one page.
{ # Metadata for a smart note generated from a conference. It refers to the notes generated from Take Notes with Gemini during the conference.
"docsDestination": { # Google Docs location where the transcript file is saved. # Output only. The Google Doc destination where the smart notes are 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 smart notes stopped.
"name": "A String", # 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.
"startTime": "A String", # Output only. Timestamp when the smart notes started.
"state": "A String", # Output only. Current state.
},
],
}
list_next(previous_request, previous_response)
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.