-
Notifications
You must be signed in to change notification settings - Fork 3
ConferenceJoinedEvent
Kenan Genjac edited this page Jul 5, 2024
·
3 revisions
Getter for the id
field.
-
String
- Represents the id of the conference that was joined, for which this event has been received.
func onConferenceJoined(_ conferenceJoinedEvent: ConferenceJoinedEvent) {
os_log("The id of the conference is %@.", conferenceJoinedEvent.id)
}
Getter for the name
field.
-
String
- Represents the name of the conference that has been joined, for which this event has been received.
func onConferenceJoined(_ conferenceJoinedEvent: ConferenceJoinedEvent) {
os_log("The name of the conference is %@.", conferenceJoinedEvent.name)
}
Getter for the participants
field.
-
[Participant]
- Represents the list of participants already inside of the conference, for which this event has been received.
func onConferenceJoined(_ conferenceJoinedEvent: ConferenceJoinedEvent) {
os_log("There are currently %d participants in the conference.", conferenceJoinedEvent.participants.count)
}
Getter for the recordingType
field.
-
RecordingType
- Value of therecordingType
field representing recording type preference.
func onConferenceJoined(_ conferenceJoinedEvent: ConferenceJoinedEvent) {
os_log("Joined conference with recording type: %@.", conferenceJoinedEvent.recordingType.stringValue)
}