File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/main/java/com/meilisearch/sdk Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ public class IndexSearchRequest {
34
34
protected Boolean showRankingScore ;
35
35
protected Boolean showRankingScoreDetails ;
36
36
protected Double rankingScoreThreshold ;
37
+ private String [] attributesToSearchOn ;
38
+
37
39
38
40
/**
39
41
* Constructor for MultiSearchRequest for building search queries with the default values:
@@ -93,7 +95,8 @@ public String toString() {
93
95
.putOpt ("filter" , this .filterArray )
94
96
.putOpt ("showRankingScore" , this .showRankingScore )
95
97
.putOpt ("showRankingScoreDetails" , this .showRankingScoreDetails )
96
- .putOpt ("rankingScoreThreshold" , this .rankingScoreThreshold );
98
+ .putOpt ("rankingScoreThreshold" , this .rankingScoreThreshold )
99
+ .putOpt ("attributesToSearchOn" , this .attributesToSearchOn );
97
100
98
101
return jsonObject .toString ();
99
102
}
You can’t perform that action at this time.
0 commit comments