ratingHistogram

@JvmName(name = "pgipcybdsfhauytv")
suspend fun ratingHistogram(value: Output<List<Int>>)
@JvmName(name = "lmpxghubgwairrpt")
suspend fun ratingHistogram(value: List<Int>?)

Parameters

value

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.


@JvmName(name = "kodpsqoonkyhglyg")
suspend fun ratingHistogram(vararg values: Output<Int>)


@JvmName(name = "uobbocfvisqbexvh")
suspend fun ratingHistogram(values: List<Output<Int>>)
@JvmName(name = "bdvokryhutbwqnvt")
suspend fun ratingHistogram(vararg values: Int)

Parameters

values

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.