@PublicPreview("2021.06") data class Rating : Serializable
An object that contains rating information.
totalRatings
- Total number of ratings.
value
- Rating value, between min/max values inclusive.
minValue
- Min value of the rating.
maxValue
- Max value of the rating.
Rating(totalRatings: Int?, value: Double?, minValue: Double?, maxValue: Double?)
An object that contains rating information. |
val maxValue: Double?
Max value of the rating. |
|
val minValue: Double?
Min value of the rating. |
|
val totalRatings: Int?
Total number of ratings. |
|
val value: Double?
Rating value, between min/max values inclusive. |