FacetHit

@Serializable
data class FacetHit(val value: FacetValue, val count: Long)

A distinct value of a faceted payload key together with how many points carry it. Returned by facet, ordered by descending count.

Constructors

Link copied to clipboard
constructor(value: FacetValue, count: Long)

Properties

Link copied to clipboard
@SerialName(value = "count")
val count: Long
Link copied to clipboard
@SerialName(value = "value")
val value: FacetValue