Package-level declarations

Types

Link copied to clipboard
@Serializable
data class NewsArchive(val filters: NewsArchiveFilters, val entries: List<NewsEntry>)

The News Archive section in Tibia.com.

Link copied to clipboard
@Serializable
data class NewsArchiveFilters(val startOn: LocalDate, val endOn: LocalDate, val types: Set<NewsType>, val categories: Set<NewsCategory>)

Filtering options for search in the News Archive.

Link copied to clipboard
@Serializable
data class NewsEntry(val id: Int, val title: String, val category: NewsCategory, val publishedOn: LocalDate, val type: NewsType) : BaseNews

A news entry listed in the NewsArchive.