Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System.Collections.Generic;
using Newtonsoft.Json;
using System;

namespace Nest
{
Expand Down Expand Up @@ -47,9 +48,12 @@ public WordDelimiterTokenFilter()
[JsonProperty("protected_words_path ")]
public string ProtectedWordsPath { get; set; }

[JsonProperty("type_table")]
[Obsolete("Please switch to TypeTableList property", true)]
public string TypeTable { get; set; }

[JsonProperty("type_table")]
public List<string> TypeTableList { get; set; }

[JsonProperty("type_table_path")]
public string TypeTablePath { get; set; }
}
Expand Down