SeedData

@Serializable
data class SeedData(val member: String? = null, val host: String? = null, val eventType: EventType? = null, val participants: List<Participant> = emptyList(), val messages: List<Message> = emptyList(), val polls: List<Poll> = emptyList(), val breakoutRooms: List<List<Participant>> = emptyList(), val requests: List<Request> = emptyList(), val waitingList: List<WaitingRoomParticipant> = emptyList())

Constructors

Link copied to clipboard
constructor(member: String? = null, host: String? = null, eventType: EventType? = null, participants: List<Participant> = emptyList(), messages: List<Message> = emptyList(), polls: List<Poll> = emptyList(), breakoutRooms: List<List<Participant>> = emptyList(), requests: List<Request> = emptyList(), waitingList: List<WaitingRoomParticipant> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
val eventType: EventType? = null
Link copied to clipboard
val host: String? = null
Link copied to clipboard
val member: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard