We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
average
sum
1 parent 73f674a commit 34ed4d5Copy full SHA for 34ed4d5
client/src/commonMain/kotlin/com/algolia/search/model/search/FacetStats.kt
@@ -26,9 +26,9 @@ public data class FacetStats(
26
/**
27
* The average facet value in the result set.
28
*/
29
- @SerialName(KeyAvg) val average: Float,
+ @SerialName(KeyAvg) val average: Float? = null,
30
31
* The sum of all values in the result set.
32
33
- @SerialName(KeySum) val sum: Float
+ @SerialName(KeySum) val sum: Float? = null
34
)
0 commit comments