ThreadedMessagesResult

data class ThreadedMessagesResult(val parentMessage: BaseMessage, val threadMessages: List<BaseMessage>)

Retrieves the threaded replies of the current message depending on the timestamp. If the current message doesn’t have replies, the result is an empty list.

Since

4.15.0

Constructors

Link copied to clipboard
constructor(parentMessage: BaseMessage, threadMessages: List<BaseMessage>)

Properties

Link copied to clipboard
val parentMessage: BaseMessage

Parent message of this thread.

Link copied to clipboard
val threadMessages: List<BaseMessage>

Retrieves the threaded replies in the thread.