StreamInfo

data class StreamInfo(    var listEventType: String,     val isRemote: Boolean,     val streamId: String,     val callId: String,     val type: String = "regular",     val name: String,     val callType: String,     val roomId: String,     val callerId: String)

Constructors

Link copied to clipboard
fun StreamInfo(    listEventType: String,     isRemote: Boolean,     streamId: String,     callId: String,     type: String = "regular",     name: String,     callType: String,     roomId: String,     callerId: String)

Properties

Link copied to clipboard
val callerId: String
Link copied to clipboard
val callId: String

Call ID.

Link copied to clipboard
val callType: String
Link copied to clipboard
val isRemote: Boolean

Whether the stream belongs to a contact (not self).

Link copied to clipboard
var listEventType: String

Event type

Link copied to clipboard
val name: String
Link copied to clipboard
val roomId: String
Link copied to clipboard
val streamId: String

Stream identifier.

Link copied to clipboard
val type: String

Either 'regular', 'composite' or 'replay'.