Meeting Class Properties - Python
id
-
type:
str -
Unique id of the meeting where the participant has joined.
active_speaker_id
-
type:
str -
It will be the
idof the participant who is actively speaking in the meeting. If no participant is speaking, at that time value ofactive_speaker_idwill beNone.
recording_state
- type :
str recording_statewill be the current state of the meeting recording.
transcription_state
- type :
str transcription_statewill be the current state of the meeting transcription.
local_participant
-
type: Participant
-
It will be the instance of Participant class for the local participant(You) who joined the meeting.
participants
-
type:
dictof Participant -
dict[str, Participant]- dict<
participantId, Participant>
- dict<
-
It will contain all joined participants in the meeting except the
local_participant. -
This will be the
dictwhat will container all participants attached with the key as id of that participant.
participantId = "abc"
participant = meeting.participants.get(participantId)
pubSub
- It is used to enable Publisher-Subscriber feature in
meetingclass.
Learn more about PubSub, here
Got a Question? Ask us on discord

