Skip to content

Commit

Permalink
fix(search): exhaustiveFacetsCount optional (nullable) field (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
aallam authored Aug 31, 2023
1 parent 792a196 commit 9dbe9c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public data class ResponseSearchForFacets(
/**
* Whether the count returned for each [facets] is exhaustive.
*/
@SerialName(Key.ExhaustiveFacetsCount) val exhaustiveFacetsCount: Boolean,
@SerialName(Key.ExhaustiveFacetsCount) val exhaustiveFacetsCount: Boolean? = null,
/**
* Processing time.
*/
Expand Down

0 comments on commit 9dbe9c6

Please sign in to comment.