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 35eab8c commit 529c8d9Copy full SHA for 529c8d9
src/Nest/DSL/Aggregations/CardinalityAggregationDescriptor.cs
@@ -13,12 +13,12 @@ public class CardinalityAggregationDescriptor<T> : MetricAggregationBaseDescript
13
where T : class
14
{
15
16
- [JsonProperty("precision_treshold")]
17
- internal int? _PrecisionTreshold { get; set; }
+ [JsonProperty("precision_threshold")]
+ internal int? _PrecisionThreshold { get; set; }
18
19
- public CardinalityAggregationDescriptor<T> PrecisionTreshold(int precisionTreshold)
+ public CardinalityAggregationDescriptor<T> PrecisionThreshold(int precisionThreshold)
20
21
- this._PrecisionTreshold = precisionTreshold;
+ this._PrecisionThreshold = precisionThreshold;
22
return this;
23
}
24
0 commit comments