We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2dc393c + ab6b941 commit 06fa1edCopy full SHA for 06fa1ed
src/Nest/Domain/Analysis/TokenFilter/WordDelimiterTokenFilter.cs
@@ -1,5 +1,6 @@
1
using System.Collections.Generic;
2
using Newtonsoft.Json;
3
+using System;
4
5
namespace Nest
6
{
@@ -47,9 +48,12 @@ public WordDelimiterTokenFilter()
47
48
[JsonProperty("protected_words_path ")]
49
public string ProtectedWordsPath { get; set; }
50
- [JsonProperty("type_table")]
51
+ [Obsolete("Please switch to TypeTableList property", true)]
52
public string TypeTable { get; set; }
53
54
+ [JsonProperty("type_table")]
55
+ public List<string> TypeTableList { get; set; }
56
+
57
[JsonProperty("type_table_path")]
58
public string TypeTablePath { get; set; }
59
}
0 commit comments