We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82e0d29 commit 6a7695aCopy full SHA for 6a7695a
src/Nest/Domain/Aggregations/ScriptedValueMetric.cs
@@ -11,6 +11,10 @@ public class ScriptedValueMetric : IMetricAggregation
11
{
12
internal object _Value { get; set; }
13
14
+ /// <summary>
15
+ /// Get the resut of the scripted metric aggregation as T
16
+ /// </summary>
17
+ /// <typeparam name="T">The type that best represents the result of your scripted metric aggrgation</typeparam>
18
public T Value<T>()
19
20
var jToken = this._Value as JToken;
0 commit comments