Close httplib2 connections.
Gets a participant session by participant session ID.
list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists the participant sessions of a participant in a conference record. By default, ordered by join time and in descending order. This API supports `fields` as standard parameters like every other API. However, when the `fields` request parameter is omitted this API defaults to `'participantsessions/*, next_page_token'`.
Retrieves the next page of results.
close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets a participant session by participant session ID. Args: name: string, Required. Resource name of the participant. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Refers to each unique join or leave session when a user joins a conference from a device. Note that any time a user joins the conference a new unique ID is assigned. That means if a user joins a space multiple times from the same device, they're assigned different IDs, and are also be treated as different participant sessions. "endTime": "A String", # Output only. Timestamp when the user session ends. Unset if the user session hasn’t ended. "name": "A String", # Identifier. Session id. "startTime": "A String", # Output only. Timestamp when the user session starts. }
list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists the participant sessions of a participant in a conference record. By default, ordered by join time and in descending order. This API supports `fields` as standard parameters like every other API. However, when the `fields` request parameter is omitted this API defaults to `'participantsessions/*, next_page_token'`. Args: parent: string, Required. Format: `conferenceRecords/{conference_record}/participants/{participant}` (required) 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: * `start_time` * `end_time` For example, `end_time IS NULL` returns active participant sessions in the conference record. pageSize: integer, Optional. Maximum number of participant sessions to return. The service might return fewer than this value. If unspecified, at most 100 participants are returned. The maximum value is 250; values above 250 are coerced to 250. 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 ListParticipants method. "nextPageToken": "A String", # Token to be circulated back for further List call if current List doesn't include all the participants. Unset if all participants are returned. "participantSessions": [ # List of participants in one page. { # Refers to each unique join or leave session when a user joins a conference from a device. Note that any time a user joins the conference a new unique ID is assigned. That means if a user joins a space multiple times from the same device, they're assigned different IDs, and are also be treated as different participant sessions. "endTime": "A String", # Output only. Timestamp when the user session ends. Unset if the user session hasn’t ended. "name": "A String", # Identifier. Session id. "startTime": "A String", # Output only. Timestamp when the user session starts. }, ], }
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.