Breakout Room Updated Data
data class BreakoutRoomUpdatedData(val forHost: Boolean? = null, val newRoom: Int? = null, val members: List<Participant>? = null, val breakoutRooms: List<List<BreakoutParticipant>>? = null, val status: String? = null)
Data class representing breakout room update information.
Constructors
Link copied to clipboard
constructor(forHost: Boolean? = null, newRoom: Int? = null, members: List<Participant>? = null, breakoutRooms: List<List<BreakoutParticipant>>? = null, status: String? = null)