class Google::Apis::RetailV2beta::GoogleCloudRetailV2betaRating

The rating of a Product.

Attributes

average_rating[RW]

The average rating of the Product. The rating is scaled at 1-5. Otherwise, an INVALID_ARGUMENT error is returned. Corresponds to the JSON property `averageRating` @return [Float]

rating_count[RW]

The total number of ratings. This value is independent of the value of rating_histogram. This value must be nonnegative. Otherwise, an INVALID_ARGUMENT error is returned. Corresponds to the JSON property `ratingCount` @return [Fixnum]

rating_histogram[RW]

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. Otherwise, an INVALID_ARGUMENT error is returned. 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. Corresponds to the JSON property `ratingHistogram` @return [Array<Fixnum>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/retail_v2beta/classes.rb, line 3042
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/retail_v2beta/classes.rb, line 3047
def update!(**args)
  @average_rating = args[:average_rating] if args.key?(:average_rating)
  @rating_count = args[:rating_count] if args.key?(:rating_count)
  @rating_histogram = args[:rating_histogram] if args.key?(:rating_histogram)
end