Google Meet API . conferenceRecords

Instance Methods

participants()

Returns the participants Resource.

recordings()

Returns the recordings Resource.

transcripts()

Returns the transcripts Resource.

close()

Close httplib2 connections.

get(name, x__xgafv=None)

Gets a conference record by conference ID.

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

Lists the conference records. By default, ordered by start time and in descending order.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets a conference record by conference ID.
Args:
 name: string, Required. Resource name of the conference. (required)
 x__xgafv: string, V1 error format.
 Allowed values
 1 - v1 error format
 2 - v2 error format
Returns:
 An object of the form:
 { # Single instance of a meeting held in a space.
 "endTime": "A String", # Output only. Timestamp when the conference ended. Set for past conferences. Unset if the conference is ongoing.
 "expireTime": "A String", # Output only. Server enforced expiration time for when this conference record resource is deleted. The resource is deleted 30 days after the conference ends.
 "name": "A String", # Identifier. Resource name of the conference record. Format: `conferenceRecords/{conference_record}` where `{conference_record}` is a unique ID for each instance of a call within a space.
 "space": "A String", # Output only. The space where the conference was held.
 "startTime": "A String", # Output only. Timestamp when the conference started. Always set.
}
list(filter=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists the conference records. By default, ordered by start time and in descending order.
Args:
 filter: string, Optional. User specified filtering condition in [EBNF format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The following are the filterable fields: * `space.meeting_code` * `space.name` * `start_time` * `end_time` For example, consider the following filters: * `space.name = "spaces/NAME"` * `space.meeting_code = "abc-mnop-xyz"` * `start_time>="2024年01月01日T00:00:00.000Z" AND start_time<="2024年01月02日T00:00:00.000Z"` * `end_time IS NULL`
 pageSize: integer, Optional. Maximum number of conference records to return. The service might return fewer than this value. If unspecified, at most 25 conference records 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 of ListConferenceRecords method.
 "conferenceRecords": [ # List of conferences in one page.
 { # Single instance of a meeting held in a space.
 "endTime": "A String", # Output only. Timestamp when the conference ended. Set for past conferences. Unset if the conference is ongoing.
 "expireTime": "A String", # Output only. Server enforced expiration time for when this conference record resource is deleted. The resource is deleted 30 days after the conference ends.
 "name": "A String", # Identifier. Resource name of the conference record. Format: `conferenceRecords/{conference_record}` where `{conference_record}` is a unique ID for each instance of a call within a space.
 "space": "A String", # Output only. The space where the conference was held.
 "startTime": "A String", # Output only. Timestamp when the conference started. Always set.
 },
 ],
 "nextPageToken": "A String", # Token to be circulated back for further List call if current List does NOT include all the Conferences. Unset if all conferences have been returned.
}
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.
 

AltStyle によって変換されたページ (->オリジナル) /