CallUser

data class CallUser(    val id: String,     val name: String? = null,     val role: String? = null,     val imageUrl: String? = null,     val isLocalUser: Boolean? = null,     val teams: List<String>? = null,     val state: CallUserState?,     val createdAt: Date?,     val updatedAt: Date?) : Serializable

Constructors

Link copied to clipboard
constructor(    id: String,     name: String? = null,     role: String? = null,     imageUrl: String? = null,     isLocalUser: Boolean? = null,     teams: List<String>? = null,     state: CallUserState?,     createdAt: Date?,     updatedAt: Date?)

Properties

Link copied to clipboard
Link copied to clipboard
val id: String
Link copied to clipboard
val imageUrl: String? = null
Link copied to clipboard
val isLocalUser: Boolean? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val role: String? = null
Link copied to clipboard
Link copied to clipboard
val teams: List<String>? = null
Link copied to clipboard

Inherited properties

Link copied to clipboard

Inherited functions

Link copied to clipboard
infix fun CallUser.merge(that: CallUser?): CallUser

Merges that into this CallUser to absorb as much data as possible from both instances.