ThreadChannel object
ThreadChannel
is an object that refers to a single thread (channel) in a chat.
Properties
The ThreadChannel
interface extends the Channel
interface, so it takes its properties. It also has:
interface ThreadChannel : Channel {
val parentMessage: Message
val parentChannelId: String
}
Parameter | Type | Description |
---|---|---|
parentMessage | Message | Message for which the thread was created. |
parentChannelId | String | Unique identifier of the main channel on which you create a subchannel (thread channel) and thread messages. |
Methods
You can call the following methods on the ThreadChannel
object.
Click on each method for more details.
getHistory()
pinMessage()
pinMessageToParentChannel()
unpinMessage()
unpinMessageFromParentChannel()
- All methods available under the
Channel
object.
Use case
For example, you can use the ThreadChannel
object methods to: