-
Notifications
You must be signed in to change notification settings - Fork 3
DialogJoinedEvent
Kenan Genjac edited this page Jul 5, 2024
·
3 revisions
Read-only property that represents the dialog id
.
-
String
- Represents the id of the dialog that was joined, for which this event has been received.
func onDialogJoined(_ dialogJoinedEvent: DialogJoinedEvent) {
os_log("The id of the dialog is %@.", dialogJoinedEvent.id)
}
Read-only property that represents the remote
participant of the dialog.
-
Participant
- Represents the remote participant of the dialog, for which this event has been received.
func onDialogJoined(_ dialogJoinedEvent: DialogJoinedEvent) {
os_log("The remote participant of the dialog: %@ ", dialogJoinedEvent.remote.endpoint.identifier())
}
Getter for the recordingType
field.
-
RecordingType
- Value of therecordingType
field representing recording type preference.
func onDialogJoined(_ dialogJoinedEvent: DialogJoinedEvent) {
os_log("Joined dialog with recording type: %@.", dialogJoinedEvent.recordingType.stringValue)
}