open class Rating : Serializable
Object that contains rating information on a scale from min and max values.
Rating()
Object that contains rating information on a scale from min and max values. |
open fun getMaxValue(): Optional<Double!>!
Returns the max value of the rating. |
|
open fun getMinValue(): Optional<Double!>!
Returns the min value of the rating. |
|
open fun getTotalRatings(): Optional<Int!>!
Returns the total number of ratings. |
|
open fun getValue(): Optional<Double!>!
Returns the rating value, between min/max values inclusive. |
|
open fun toString(): String |