Message

data class Message(val message: Message, val isFirstChainMessage: Boolean = true, val isLastChainMessage: Boolean = true) : ConversationItem

Message conversation item

Constructors

Link copied to clipboard
constructor(message: Message, isFirstChainMessage: Boolean = true, isLastChainMessage: Boolean = true)

Properties

Link copied to clipboard
val id: String

String conversation identifier

Link copied to clipboard

Boolean flag indicating if the message is the first of a chain of messages, true if it is the first of a chain, false otherwise

Link copied to clipboard

Boolean flag indicating if the message is the last of a chain of messages, true if it is the last of a chain, false otherwise

Link copied to clipboard

Message message to be displayed