Review

@Serializable
data class Review(val id: Int, val userId: Int? = null, val mediaId: Int? = null, val mediaType: MediaType? = null, val summary: String? = null, val body: String? = null, val rating: Int? = null, val ratingAmount: Int? = null, val userRating: Review.ReviewRating? = null, val score: Int? = null, val private: Boolean? = null, val siteUrl: String? = null, val createdAt: Int? = null, val updatedAt: Int? = null, val user: AnilistUser? = null, val media: Media? = null)

Constructors

Link copied to clipboard
constructor(id: Int, userId: Int? = null, mediaId: Int? = null, mediaType: MediaType? = null, summary: String? = null, body: String? = null, rating: Int? = null, ratingAmount: Int? = null, userRating: Review.ReviewRating? = null, score: Int? = null, private: Boolean? = null, siteUrl: String? = null, createdAt: Int? = null, updatedAt: Int? = null, user: AnilistUser? = null, media: Media? = null)

Types

Link copied to clipboard
@Serializable
enum ReviewRating : Enum<Review.ReviewRating>

Properties

Link copied to clipboard
val body: String? = null
Link copied to clipboard
val createdAt: Int? = null
Link copied to clipboard
val id: Int
Link copied to clipboard
val media: Media? = null
Link copied to clipboard
val mediaId: Int? = null
Link copied to clipboard
val mediaType: MediaType? = null
Link copied to clipboard
val private: Boolean? = null
Link copied to clipboard
val rating: Int? = null
Link copied to clipboard
val ratingAmount: Int? = null
Link copied to clipboard
val score: Int? = null
Link copied to clipboard
val siteUrl: String? = null
Link copied to clipboard
val summary: String? = null
Link copied to clipboard
val updatedAt: Int? = null
Link copied to clipboard
val user: AnilistUser? = null
Link copied to clipboard
val userId: Int? = null
Link copied to clipboard