Package-level declarations

Types

Link copied to clipboard
@Serializable
data class ForumPost(val author: ForumAuthor, val emoticon: ForumEmoticon?, val title: String?, val content: String, val signature: String?, val postId: Int, val postedAt: Instant, val editedAt: Instant?, val editedBy: String?) : BaseForumPost

A post in a ForumThread.

Link copied to clipboard
@Serializable
data class ForumThread(val title: String, val threadId: Int, val boardName: String, val boardId: Int, val sectionName: String, val sectionId: Int, val previousTopicNumber: Int?, val nextTopicNumber: Int?, val hasGoldenFrame: Boolean, val anchoredPost: ForumPost? = null, val currentPage: Int, val totalPages: Int, val resultsCount: Int, val entries: List<ForumPost>) : BaseForumThread, PaginatedWithUrl<ForumPost>

A thread in the Tibia forums.