Skip to content

ConferenceJoinedEvent

Kenan Genjac edited this page Jul 5, 2024 · 3 revisions



id

Description

Getter for the id field.

Returns

  • String - Represents the id of the conference that was joined, for which this event has been received.

Example

func onConferenceJoined(_ conferenceJoinedEvent: ConferenceJoinedEvent) {
    os_log("The id of the conference is %@.", conferenceJoinedEvent.id)
}



name

Description

Getter for the name field.

Returns

  • String - Represents the name of the conference that has been joined, for which this event has been received.

Example

func onConferenceJoined(_ conferenceJoinedEvent: ConferenceJoinedEvent) {
    os_log("The name of the conference is %@.", conferenceJoinedEvent.name)
}



participants

Description

Getter for the participants field.

Returns

  • [Participant] - Represents the list of participants already inside of the conference, for which this event has been received.

Example

func onConferenceJoined(_ conferenceJoinedEvent: ConferenceJoinedEvent) {
    os_log("There are currently %d participants in the conference.", conferenceJoinedEvent.participants.count)
}



recordingType

Description

Getter for the recordingType field.

Returns

  • RecordingType - Value of the recordingType field representing recording type preference.

Example

func onConferenceJoined(_ conferenceJoinedEvent: ConferenceJoinedEvent) {
    os_log("Joined conference with recording type: %@.", conferenceJoinedEvent.recordingType.stringValue)
}

Tutorials

Migration guides

Reference documentation

Clone this wiki locally