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.
1 parent 4bd3991 commit 1a2c944Copy full SHA for 1a2c944
src/Nest/Search/FieldStats/FieldStatsResponse.cs
@@ -52,10 +52,17 @@ public class FieldStatsField
52
53
[JsonProperty("min_value")]
54
//TODO this can also be an object in the case of geo_point/shape
55
- public string MinValue { get; internal set; }
+ public object MinValue { get; internal set; }
56
+
57
+ [JsonProperty("min_value_as_string")]
58
+ public string MinValueAsString { get; internal set; }
59
60
[JsonProperty("max_value")]
61
- public string MaxValue { get; internal set; }
62
+ public object MaxValue { get; internal set; }
63
64
+ [JsonProperty("max_value_as_string")]
65
+ public string MaxValueAsString { get; internal set; }
66
67
}
68
0 commit comments