File tree Expand file tree Collapse file tree
algoliasearch-core/src/main/java/com/algolia/search/models/settings Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ public class IndexSettings implements Serializable {
2727 private Integer maxFacetHits ;
2828 private String keepDiacriticsOnCharacters ;
2929 private List <String > queryLanguages ;
30+ private List <String > indexLanguages ;
3031
3132 private List <String > searchableAttributes ;
3233 private List <String > attributesForFaceting ;
@@ -632,6 +633,15 @@ public IndexSettings setQueryLanguages(List<String> queryLanguages) {
632633 return this ;
633634 }
634635
636+ public List <String > getIndexLanguages () {
637+ return indexLanguages ;
638+ }
639+
640+ public IndexSettings setIndexLanguages (List <String > indexLanguages ) {
641+ this .indexLanguages = indexLanguages ;
642+ return this ;
643+ }
644+
635645 @ JsonAnySetter
636646 public IndexSettings setCustomSetting (String key , Object value ) {
637647 this .customSettings .put (key , value );
You can’t perform that action at this time.
0 commit comments