Package-level declarations

Types

Link copied to clipboard

An individual entry within a Conversation.

Link copied to clipboard
@JsonClass(generateAdapter = false)
enum ConversationEntryStatus : Enum<ConversationEntryStatus>

The ConversationEntry status value.

Link copied to clipboard
data class CoreConversationEntry(val senderDisplayName: String, val conversationId: UUID, val sender: Participant, val payload: EntryPayload, val entryType: ConversationEntryType, val identifier: String, val transcriptedTimestamp: Long? = null, val timestamp: Long = transcriptedTimestamp ?: Date().time, val status: ConversationEntryStatus = ConversationEntryStatus.Sending, val error: NetworkError? = null) : ConversationEntry

Conversation entry class.

Link copied to clipboard

Network error codes.