Returns the participantSessions Resource.
Close httplib2 connections.
Gets a participant by participant ID.
list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists the participants 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 `'participants/*, next_page_token'`.
Retrieves the next page of results.
close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets a participant by participant 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: { # User who attended or is attending a conference. "anonymousUser": { # User who joins anonymously (meaning not signed into a Google Account). # Anonymous user. "displayName": "A String", # Output only. User provided name when they join a conference anonymously. }, "earliestStartTime": "A String", # Output only. Time when the participant first joined the meeting. "latestEndTime": "A String", # Output only. Time when the participant left the meeting for the last time. This can be null if it's an active meeting. "name": "A String", # Output only. Resource name of the participant. Format: `conferenceRecords/{conference_record}/participants/{participant}` "phoneUser": { # User dialing in from a phone where the user's identity is unknown because they haven't signed in with a Google Account. # User calling from their phone. "displayName": "A String", # Output only. Partially redacted user's phone number when calling. }, "signedinUser": { # A signed-in user can be: a) An individual joining from a personal computer, mobile device, or through companion mode. b) A robot account used by conference room devices. # Signed-in user. "displayName": "A String", # Output only. For a personal device, it's the user's first name and last name. For a robot account, it's the administrator-specified device name. For example, "Altostrat Room". "user": "A String", # Output only. Unique ID for the user. Interoperable with Admin SDK API and People API. Format: `users/{user}` }, }
list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists the participants 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 `'participants/*, next_page_token'`. Args: parent: string, Required. Format: `conferenceRecords/{conference_record}` (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: * `earliest_start_time` * `latest_end_time` For example, `latest_end_time IS NULL` returns active participants in the conference. pageSize: integer, Maximum number of participants 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, 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. "participants": [ # List of participants in one page. { # User who attended or is attending a conference. "anonymousUser": { # User who joins anonymously (meaning not signed into a Google Account). # Anonymous user. "displayName": "A String", # Output only. User provided name when they join a conference anonymously. }, "earliestStartTime": "A String", # Output only. Time when the participant first joined the meeting. "latestEndTime": "A String", # Output only. Time when the participant left the meeting for the last time. This can be null if it's an active meeting. "name": "A String", # Output only. Resource name of the participant. Format: `conferenceRecords/{conference_record}/participants/{participant}` "phoneUser": { # User dialing in from a phone where the user's identity is unknown because they haven't signed in with a Google Account. # User calling from their phone. "displayName": "A String", # Output only. Partially redacted user's phone number when calling. }, "signedinUser": { # A signed-in user can be: a) An individual joining from a personal computer, mobile device, or through companion mode. b) A robot account used by conference room devices. # Signed-in user. "displayName": "A String", # Output only. For a personal device, it's the user's first name and last name. For a robot account, it's the administrator-specified device name. For example, "Altostrat Room". "user": "A String", # Output only. Unique ID for the user. Interoperable with Admin SDK API and People API. Format: `users/{user}` }, }, ], "totalSize": 42, # Total, exact number of `participants`. By default, this field isn't included in the response. Set the field mask in [SystemParameterContext](https://cloud.google.com/apis/docs/system-parameters) to receive this field in the response. }
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.