CoGuestState

data class CoGuestState(val connected: StateFlow<List<SeatUserInfo>>, val invitees: StateFlow<List<LiveUserInfo>>, val applicants: StateFlow<List<LiveUserInfo>>, val candidates: StateFlow<List<LiveUserInfo>>)

Co-hosting related state data provided by CoGuestStore

Constructors

Link copied to clipboard
constructor(connected: StateFlow<List<SeatUserInfo>>, invitees: StateFlow<List<LiveUserInfo>>, applicants: StateFlow<List<LiveUserInfo>>, candidates: StateFlow<List<LiveUserInfo>>)

Properties

Link copied to clipboard
val applicants: StateFlow<List<LiveUserInfo>>

List of users who applied for co-hosting received by anchor.

Link copied to clipboard
val candidates: StateFlow<List<LiveUserInfo>>

List of candidate users for co-hosting.

Link copied to clipboard
val connected: StateFlow<List<SeatUserInfo>>

List of users already on seats.

Link copied to clipboard
val invitees: StateFlow<List<LiveUserInfo>>

List of users invited by anchor.