Meeting Class Properties
id
type:
String
Unique id of the meeting where the participant has joined.
localParticipant
type: Participant
It will be the instance of Participant class for the local participant(You) who joined the meeting.
participants
type:
[Dictionary]
of Participant[
String
:Participant
]- [
participantId
,Participant
]
- [
It will contain all joined participants in the meeting except the
localParticipant
.This will be the
[Dictionary]
what will container all participants attached with the key as id of that participant.
let remoteParticipantId = "ajf897";
let remoteParticipant = participants[remoteParticipantId];
listeners
type:
MeetingMulticastDelegate
It will listens the events of Meeting class for the local participant who joined the meeting.