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

Article

data class Article

Detail about article's entity.

Constructors

<init>

Detail about article's entity.

Article(url: String? = null, title: String? = null, date: Date? = null, authorName: String? = null, authorUrl: String? = null, forumUrl: String? = null, imageUrl: String? = null, comments: Int? = null, intro: String? = null)

Properties

authorName

Article's author.

val authorName: String?

authorUrl

Author's MyAnimeList URL.

val authorUrl: String?

comments

Comments count on the article.

val comments: Int?

date

Article's published date.

val date: Date?

forumUrl

Article's forum URL on MyAnimeList.

val forumUrl: String?

imageUrl

Article's image URL.

val imageUrl: String?

intro

Intro of the article.

val intro: String?

title

Title of the article.

val title: String?

url

Article's URL on MyAnimeList

val url: String?