BoardEntry

@Serializable
data class BoardEntry(val name: String, val boardId: Int, val description: String, val posts: Int, val threads: Int, val lastPost: LastPost?) : BaseForumBoard(source)

A forum board listen within a ForumSection.

Constructors

Link copied to clipboard
constructor(name: String, boardId: Int, description: String, posts: Int, threads: Int, lastPost: LastPost?)

Properties

Link copied to clipboard
open override val boardId: Int

The internal ID of the board. Used for linking.

Link copied to clipboard

The description of the board.

Link copied to clipboard

The last post in the board.

Link copied to clipboard

The name of the board.

Link copied to clipboard
val posts: Int

The number of posts in the board.

Link copied to clipboard

The number of threads in the board.

Link copied to clipboard
open val url: String

The URL to this board.