Skip to content

Commit 9dbe9c6

Browse files
authored
fix(search): exhaustiveFacetsCount optional (nullable) field (#405)
1 parent 792a196 commit 9dbe9c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/commonMain/kotlin/com/algolia/search/model/response/ResponseSearchForFacets.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public data class ResponseSearchForFacets(
1515
/**
1616
* Whether the count returned for each [facets] is exhaustive.
1717
*/
18-
@SerialName(Key.ExhaustiveFacetsCount) val exhaustiveFacetsCount: Boolean,
18+
@SerialName(Key.ExhaustiveFacetsCount) val exhaustiveFacetsCount: Boolean? = null,
1919
/**
2020
* Processing time.
2121
*/

0 commit comments

Comments
 (0)