Skip to content

Commit 57d7273

Browse files
committed
Merge branch 'refactor/aggs-metadata'
2 parents 32f48b2 + 88c50a8 commit 57d7273

File tree

60 files changed

+980
-841
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+980
-841
lines changed

src/Nest/Aggregations/Aggregate.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
6+
namespace Nest
7+
{
8+
/// <summary>
9+
/// Represents the result of an aggregation on the response
10+
/// </summary>
11+
[ExactContractJsonConverter(typeof(AggregateJsonConverter))]
12+
public interface IAggregate
13+
{
14+
IDictionary<string, object> Meta { get; set; }
15+
}
16+
}

0 commit comments

Comments
 (0)