UserRating

@Serializable
data class UserRating(val level: Level, val rating: Rating, val currentLevelRating: Rating, val nextLevelRating: Rating? = null)

Constructors

Link copied to clipboard
constructor(level: Level, rating: Rating, currentLevelRating: Rating, nextLevelRating: Rating? = null)

Properties

Link copied to clipboard
@SerialName(value = "current_level_rating")
val currentLevelRating: Rating
Link copied to clipboard
@SerialName(value = "level")
val level: Level
Link copied to clipboard
@SerialName(value = "next_level_rating")
val nextLevelRating: Rating? = null
Link copied to clipboard
@SerialName(value = "rating")
val rating: Rating