Skip to content

DialogJoinedEvent

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



id

Description

Read-only property that represents the dialog id.

Returns

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

Example

func onDialogJoined(_ dialogJoinedEvent: DialogJoinedEvent) {
    os_log("The id of the dialog is %@.", dialogJoinedEvent.id)
}



remote

Description

Read-only property that represents the remote participant of the dialog.

Returns

  • Participant - Represents the remote participant of the dialog, for which this event has been received.

Example

func onDialogJoined(_ dialogJoinedEvent: DialogJoinedEvent) {
    os_log("The remote participant of the dialog: %@ ", dialogJoinedEvent.remote.endpoint.identifier())
}



recordingType

Description

Getter for the recordingType field.

Returns

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

Example

func onDialogJoined(_ dialogJoinedEvent: DialogJoinedEvent) {
    os_log("Joined dialog with recording type: %@.", dialogJoinedEvent.recordingType.stringValue)
}

Tutorials

Migration guides

Reference documentation

Clone this wiki locally