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.

Constructors

Link copied to clipboard
constructor(users: List<String>? = null, muteAllUsers: Boolean? = null, audio: Boolean? = null, screenShare: Boolean? = null, video: Boolean? = null)

Properties

Link copied to clipboard
val audio: Boolean? = null
Link copied to clipboard
val muteAllUsers: Boolean? = null
Link copied to clipboard
val screenShare: Boolean? = null
Link copied to clipboard
val users: List<String>? = null
Link copied to clipboard
val video: Boolean? = null

Inherited functions

Link copied to clipboard

Maps the data to the request for the BE.