ThreadEntry

@Serializable
data class ThreadEntry(val title: String, val threadId: Int, val author: String, val isAuthorTraded: Boolean, val isAuthorDeleted: Boolean, val emoticon: ForumEmoticon?, val replies: Int, val views: Int, val lastPost: LastPost, val status: Set<ThreadStatus>, val pages: Int, val goldenFrame: Boolean) : BaseForumThread(source)

A thread entry in the forums.

Constructors

Link copied to clipboard
constructor(title: String, threadId: Int, author: String, isAuthorTraded: Boolean, isAuthorDeleted: Boolean, emoticon: ForumEmoticon?, replies: Int, views: Int, lastPost: LastPost, status: Set<ThreadStatus>, pages: Int, goldenFrame: Boolean)

Properties

Link copied to clipboard

The name of the author that created the thread.

Link copied to clipboard

The selected emoticon for the thread.

Link copied to clipboard

Whether the thread has a golden frame around it.

Link copied to clipboard

Whether the thread author is now deleted.

Link copied to clipboard

Whether the author's character was traded after the thread was created.

Link copied to clipboard

Brief details of the last post.

Link copied to clipboard
val pages: Int

The total number of pages the thread has.

Link copied to clipboard

The total number of replies the thread has.

Link copied to clipboard

The status the thread has.

Link copied to clipboard
open override val threadId: Int

The internal ID of the thread.

Link copied to clipboard
open override val title: String

The title of the thread.

Link copied to clipboard
open val url: String

The URL to the forum thread.

Link copied to clipboard
val views: Int

The total number of views the thread has.