Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 908 Bytes

ProductDtoRating.md

File metadata and controls

13 lines (8 loc) · 908 Bytes

ProductDtoRating

Properties

Name Type Description Notes
rating_count Option<i32> The total number of ratings. This value is independent of the value of histogram.This value must be nonnegative. [optional]
average_rating Option<f32> The average rating of the product. The rating is scaled at 1-5. [optional]
rating_histogram Option<Vec> List of rating counts per rating value (index = rating - 1). The list is empty if there is no rating. If the list is non-empty, its size is always 5. For example, [41, 14, 13, 47, 303]. It means that the product got 41 ratings with 1 star, 14 ratings with 2 star, and so on. [optional]

[Back to Model list] [Back to API list] [Back to README]