Package-level declarations
Types
Link copied to clipboard
interface Conversation
A conversation entity.
Link copied to clipboard
interface ConversationContextParamMap
Conversation context parameter mapping.
Link copied to clipboard
data class CoreConversation(val identifier: UUID, val developerName: String, val participants: List<CoreParticipant>, val createdAt: Long? = null, val inboundHighWatermarkEntry: ConversationEntry? = null, val outboundHighWatermarkEntry: ConversationEntry? = null, val preChatFields: List<PreChatField>? = null, val activeParticipants: List<Participant> = emptyList(), val lastActivity: ConversationEntry? = null, val preChatSubmissionTimestamp: Long? = null, val termsAndConditions: TermsAndConditions? = null, val unreadMessageCount: Int = 0) : Conversation
Data for a conversation entity.
Link copied to clipboard
data class CoreConversationContextParamMap(val sessionId: String?, val sessionStatus: String?) : ConversationContextParamMap
Data for a conversation context parameter mapping.