TypingIndicator

data class TypingIndicator(val conversationEntry: ConversationEntry, val status: TypingIndicatorStatus = when (conversationEntry.entryType) { ConversationEntryType.TypingStoppedIndicator -> TypingIndicatorStatus.Stopped else -> TypingIndicatorStatus.Started }) : CoreEvent.ConversationEvent

Deprecated

Use [ProgressIndicator] instead

CoreEvent emitted when a new typing event has been triggered.

Constructors

Link copied to clipboard
constructor(conversationEntry: ConversationEntry, status: TypingIndicatorStatus = when (conversationEntry.entryType) { ConversationEntryType.TypingStoppedIndicator -> TypingIndicatorStatus.Stopped else -> TypingIndicatorStatus.Started })

Properties

Link copied to clipboard

The ConversationEntry representing the typing indicator event.

Link copied to clipboard
val conversationId: UUID

The conversationId in which this event belongs to.

Link copied to clipboard