Types for Google Apps Meet v2beta API¶
- class google.apps.meet_v2beta.types.ActiveConference(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Active conference.
- class google.apps.meet_v2beta.types.AnonymousUser(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
User who joins anonymously (meaning not signed into a Google Account).
- class google.apps.meet_v2beta.types.ConferenceRecord(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Developer Preview. Single instance of a meeting held in a space.
- name¶
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.- Type
- start_time¶
Output only. Timestamp when the conference started, always set.
- end_time¶
Output only. Timestamp when the conference ended. Set for past conferences. Unset if the conference is ongoing.
- expire_time¶
Output only. Server enforced expire time for when this conference record resource is deleted. The resource is deleted 30 days after the conference ends.
- class google.apps.meet_v2beta.types.CreateSpaceRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to create a space.
- space¶
Space to be created. As of May 2023, the input space can be empty. Later on the input space can be non-empty when space configuration is introduced.
- class google.apps.meet_v2beta.types.DocsDestination(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Google Docs location where the transcript file is saved.
- document¶
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.- Type
- class google.apps.meet_v2beta.types.DriveDestination(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Export location where a recording file is saved in Google Drive.
- file¶
Output only. The
fileId
for the underlying MP4 file. For example, “1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP”. Use$ GET https://www.googleapis.com/drive/v3/files/{$fileId}?alt=media
to download the blob. For more information, see https://developers.google.com/drive/api/v3/reference/files/get.- Type
- class google.apps.meet_v2beta.types.EndActiveConferenceRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to end an ongoing conference of a space.
- class google.apps.meet_v2beta.types.GetConferenceRecordRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to get a conference record.
- class google.apps.meet_v2beta.types.GetParticipantRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to get a Participant.
- class google.apps.meet_v2beta.types.GetParticipantSessionRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to get a participant session.
- class google.apps.meet_v2beta.types.GetRecordingRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request message for GetRecording method.
- class google.apps.meet_v2beta.types.GetSpaceRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to get a space.
- class google.apps.meet_v2beta.types.GetTranscriptEntryRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request for GetTranscriptEntry method.
- class google.apps.meet_v2beta.types.GetTranscriptRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request for GetTranscript method.
- class google.apps.meet_v2beta.types.ListConferenceRecordsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to fetch list of conference records per user.
- page_size¶
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.
- Type
- class google.apps.meet_v2beta.types.ListConferenceRecordsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Response of ListConferenceRecords method.
- conference_records¶
List of conferences in one page.
- Type
MutableSequence[google.apps.meet_v2beta.types.ConferenceRecord]
- class google.apps.meet_v2beta.types.ListParticipantSessionsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to fetch list of participant sessions per conference record per participant.
- page_size¶
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.
- Type
- class google.apps.meet_v2beta.types.ListParticipantSessionsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Response of ListParticipants method.
- participant_sessions¶
List of participants in one page.
- Type
MutableSequence[google.apps.meet_v2beta.types.ParticipantSession]
- class google.apps.meet_v2beta.types.ListParticipantsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to fetch list of participant per conference.
- page_size¶
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.
- Type
- class google.apps.meet_v2beta.types.ListParticipantsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Response of ListParticipants method.
- participants¶
List of participants in one page.
- Type
MutableSequence[google.apps.meet_v2beta.types.Participant]
- next_page_token¶
Token to be circulated back for further List call if current List doesn’t include all the participants. Unset if all participants are returned.
- Type
- total_size¶
Total, exact number of
participants
. By default, this field isn’t included in the response. Set the field mask in SystemParameterContext to receive this field in the response.- Type
- class google.apps.meet_v2beta.types.ListRecordingsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request for ListRecordings method.
- page_size¶
Maximum number of recordings to return. The service might return fewer than this value. If unspecified, at most 10 recordings are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.
- Type
- class google.apps.meet_v2beta.types.ListRecordingsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Response for ListRecordings method.
- recordings¶
List of recordings in one page.
- Type
MutableSequence[google.apps.meet_v2beta.types.Recording]
- class google.apps.meet_v2beta.types.ListTranscriptEntriesRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request for ListTranscriptEntries method.
- page_size¶
Maximum number of entries to return. The service might return fewer than this value. If unspecified, at most 10 entries are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.
- Type
- class google.apps.meet_v2beta.types.ListTranscriptEntriesResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Response for ListTranscriptEntries method
- transcript_entries¶
List of TranscriptEntries in one page.
- Type
MutableSequence[google.apps.meet_v2beta.types.TranscriptEntry]
- class google.apps.meet_v2beta.types.ListTranscriptsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request for ListTranscripts method.
- page_size¶
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.
- Type
- class google.apps.meet_v2beta.types.ListTranscriptsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Response for ListTranscripts method.
- transcripts¶
List of transcripts in one page.
- Type
MutableSequence[google.apps.meet_v2beta.types.Transcript]
- class google.apps.meet_v2beta.types.Participant(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Developer Preview. User who attended or is attending a conference.
This message has oneof fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members.
- name¶
Output only. Resource name of the participant. Format:
conferenceRecords/{conference_record}/participants/{participant}
- Type
- earliest_start_time¶
Output only. Time when the participant joined the meeting for the first time.
- latest_end_time¶
Output only. Time when the participant left the meeting for the last time. This can be null if it is an active meeting.
- class google.apps.meet_v2beta.types.ParticipantSession(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Developer Preview. Refers to each unique join/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.
- start_time¶
Output only. Timestamp when the user session started.
- end_time¶
Output only. Timestamp when the user session ended. Unset if the user session hasn’t ended.
- class google.apps.meet_v2beta.types.PhoneUser(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
User dialing in from a phone where the user’s identity is unknown because they haven’t signed in with a Google Account.
- class google.apps.meet_v2beta.types.Recording(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Developer Preview. Metadata about a recording created during a conference.
- drive_destination¶
Output only. Recording is saved to Google Drive as an mp4 file. The
drive_destination
includes the DrivefileId
that can be used to download the file using thefiles.get
method of the Drive API.This field is a member of oneof
destination
.
- name¶
Output only. Resource name of the recording. Format:
conferenceRecords/{conference_record}/recordings/{recording}
where{recording}
is a 1:1 mapping to each unique recording session during the conference.- Type
- state¶
Output only. Current state.
- start_time¶
Output only. Timestamp when the recording started.
- end_time¶
Output only. Timestamp when the recording ended.
- class State(value)[source]¶
Bases:
proto.enums.Enum
Current state of the recording session.
- Values:
- STATE_UNSPECIFIED (0):
Default, never used.
- STARTED (1):
An active recording session has started.
- ENDED (2):
This recording session has ended, but the recording file hasn’t been generated yet.
- FILE_GENERATED (3):
Recording file is generated and ready to download.
- class google.apps.meet_v2beta.types.SignedinUser(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
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.
- user¶
Output only. Unique ID for the user. Interoperable with Admin SDK API and People API. Format:
users/{user}
- Type
- class google.apps.meet_v2beta.types.Space(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Developer Preview. Virtual place where conferences are held. Only one active conference can be held in one space at any given time.
- meeting_uri¶
Output only. URI used to join meeting, such as
https://meet.google.com/abc-mnop-xyz
.- Type
- meeting_code¶
Output only. Type friendly code to join the meeting. Format:
[a-z]+-[a-z]+-[a-z]+
such asabc-mnop-xyz
. The maximum length is 128 characters. Can ONLY be used as alias of the space ID to get the space.- Type
- config¶
Configuration pertaining to the meeting space.
- active_conference¶
Active conference if it exists.
- class google.apps.meet_v2beta.types.SpaceConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
The configuration pertaining to a meeting space.
- access_type¶
Access type of the meeting space that determines who can join without knocking. Default: The user’s default access settings. Controlled by the user’s admin for enterprise users or RESTRICTED.
- entry_point_access¶
Defines the entry points that can be used to join meetings hosted in this meeting space. Default: EntryPointAccess.ALL
- class AccessType(value)[source]¶
Bases:
proto.enums.Enum
Possible access types for a meeting space.
- Values:
- ACCESS_TYPE_UNSPECIFIED (0):
Default value specified by the user’s organization. Note: This is never returned, as the configured access type is returned instead.
- OPEN (1):
Anyone with the join information (for example, the URL or phone access information) can join without knocking.
- TRUSTED (2):
Members of the host’s organization, invited external users, and dial-in users can join without knocking. Everyone else must knock.
- RESTRICTED (3):
Only invitees can join without knocking. Everyone else must knock.
- class EntryPointAccess(value)[source]¶
Bases:
proto.enums.Enum
Entry points that can be used to join a meeting. Example:
meet.google.com
, the Embed SDK Web, or a mobile application.- Values:
- ENTRY_POINT_ACCESS_UNSPECIFIED (0):
Unused.
- ALL (1):
All entry points are allowed.
- CREATOR_APP_ONLY (2):
Only entry points owned by the Google Cloud project that created the space can be used to join meetings in this space. Apps can use the Embed SDK Web or mobile Meet SDKs to create owned entry points.
- class google.apps.meet_v2beta.types.Transcript(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Developer Preview. Metadata for a transcript generated from a conference. It refers to the ASR (Automatic Speech Recognition) result of user’s speech during the conference.
- docs_destination¶
Output only. Where the Google Docs transcript is saved.
This field is a member of oneof
destination
.
- name¶
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.- Type
- state¶
Output only. Current state.
- start_time¶
Output only. Timestamp when the transcript started.
- end_time¶
Output only. Timestamp when the transcript stopped.
- class State(value)[source]¶
Bases:
proto.enums.Enum
Current state of the transcript session.
- Values:
- STATE_UNSPECIFIED (0):
Default, never used.
- STARTED (1):
An active transcript session has started.
- ENDED (2):
This transcript session has ended, but the transcript file hasn’t been generated yet.
- FILE_GENERATED (3):
Transcript file is generated and ready to download.
- class google.apps.meet_v2beta.types.TranscriptEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Developer Preview. Single entry for one user’s speech during a transcript session.
- name¶
Output only. Resource name of the entry. Format: “conferenceRecords/{conference_record}/transcripts/{transcript}/entries/{entry}”.
- Type
- text¶
Output only. The transcribed text of the participant’s voice, at maximum 10K words. Note that the limit is subject to change.
- Type
- language_code¶
Output only. Language of spoken text, such as “en-US”. IETF BCP 47 syntax (https://tools.ietf.org/html/bcp47)
- Type
- start_time¶
Output only. Timestamp when the transcript entry started.
- end_time¶
Output only. Timestamp when the transcript entry ended.
- class google.apps.meet_v2beta.types.UpdateSpaceRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Request to update a space.
- space¶
Required. Space to be updated.
- update_mask¶
Optional. Field mask used to specify the fields to be updated in the space. If update_mask isn’t provided, it defaults to ‘*’ and updates all fields provided in the request, including deleting fields not set in the request.