Thread Details
data class ThreadDetails( val isRootThread: Boolean = false, val numberOfThreads: Int = 0, val threadSummarySenderInfo: SenderInfo? = null, val threadSummaryLatestEvent: Event? = null, val lastMessageTimestamp: Long? = null, val threadNotificationState: ThreadNotificationState = ThreadNotificationState.NO_NEW_MESSAGE, val isThread: Boolean = false, val lastRootThreadEdition: String? = null)
Content copied to clipboard
This class contains all the details needed for threads. Is is mainly used from within an Event.
Constructors
Link copied to clipboard
fun ThreadDetails( isRootThread: Boolean = false, numberOfThreads: Int = 0, threadSummarySenderInfo: SenderInfo? = null, threadSummaryLatestEvent: Event? = null, lastMessageTimestamp: Long? = null, threadNotificationState: ThreadNotificationState = ThreadNotificationState.NO_NEW_MESSAGE, isThread: Boolean = false, lastRootThreadEdition: String? = null)
Content copied to clipboard