CoreConversationEntry
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.
See also
Constructors
Link copied to clipboard
constructor(senderDisplayName: String, conversationId: UUID, sender: Participant, payload: EntryPayload, entryType: ConversationEntryType, identifier: String, transcriptedTimestamp: Long? = null, timestamp: Long = transcriptedTimestamp ?: Date().time, status: ConversationEntryStatus = ConversationEntryStatus.Sending, error: NetworkError? = null)
Properties
Link copied to clipboard
Unique ID for the conversation.
Link copied to clipboard
The type of entry.
Link copied to clipboard
Link copied to clipboard
Identifier for this entry.
Link copied to clipboard
Link copied to clipboard
Entry payload.
Link copied to clipboard
Sender information.
Link copied to clipboard
Display name of sender.
Link copied to clipboard
Entry status.
Link copied to clipboard