MuteUsersData
data class MuteUsersData(val users: List<String>? = null, val muteAllUsers: Boolean? = null, val audio: Boolean? = null, val screenShare: Boolean? = null, val video: Boolean? = null)
Represents the data used to request user's tracks to be muted.
Parameters
muteAllUsers
If we should mute all the users in the call.
audio
If the audio should be muted.
screenShare
If the screen sharing should be muted.
video
If the video should be muted.
users
List of users to apply the mute change to.