JikanKt / moe.ganen.jikankt.models.base.types / Topic

Topic

data class Topic : MalEntity

Detail of the topic.

Constructors

<init>

Detail of the topic.

Topic(malId: Int, url: String? = null, title: String? = null, datePosted: Date? = null, authorName: String? = null, authorUrl: String? = null, replies: Int? = null, lastPost: PostSnippet? = null)

Properties

authorName

Author of the topic.

val authorName: String?

authorUrl

Author's URL on MyAnimeList

val authorUrl: String?

datePosted

Topic's date posted.

val datePosted: Date?

lastPost

last post snippet of the topic.

val lastPost: PostSnippet?

malId

Topic's ID on MyAnimeList.

val malId: Int

replies

Replies count on the topic.

val replies: Int?

title

Title of the topic.

val title: String?

url

Topic's URL on MyAnimeList

val url: String?