File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
algoliasearch-core/src/main/java/com/algolia/search/models/indexing Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ public class SearchResult<T> implements Serializable {
33
33
private Integer appliedRelevancyStrictness ;
34
34
private Integer nbSortedHits ;
35
35
private RenderingContent renderingContent ;
36
+ private Integer abTestID ;
36
37
37
38
public Explain getExplain () {
38
39
return explain ;
@@ -142,6 +143,15 @@ public SearchResult<T> setRenderingContent(RenderingContent renderingContent) {
142
143
return this ;
143
144
}
144
145
146
+ public Integer getAbTestID () {
147
+ return abTestID ;
148
+ }
149
+
150
+ public SearchResult <T > setAbTestID (Integer abTestID ) {
151
+ this .abTestID = abTestID ;
152
+ return this ;
153
+ }
154
+
145
155
private Long offset ;
146
156
private Long length ;
147
157
private String parsedQuery ;
@@ -398,6 +408,9 @@ public String toString() {
398
408
+ '\''
399
409
+ ", renderingContent="
400
410
+ renderingContent
411
+ + '\''
412
+ + ", abTestID="
413
+ + abTestID
401
414
+ '}' ;
402
415
}
403
416
}
You can’t perform that action at this time.
0 commit comments