1
+ // Licensed to Elasticsearch B.V under one or more agreements.
2
+ // Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3
+ // See the LICENSE file in the project root for more information.
4
+ //
5
+ // ███╗ ██╗ ██████╗ ████████╗██╗ ██████╗███████╗
6
+ // ████╗ ██║██╔═══██╗╚══██╔══╝██║██╔════╝██╔════╝
7
+ // ██╔██╗ ██║██║ ██║ ██║ ██║██║ █████╗
8
+ // ██║╚██╗██║██║ ██║ ██║ ██║██║ ██╔══╝
9
+ // ██║ ╚████║╚██████╔╝ ██║ ██║╚██████╗███████╗
10
+ // ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝
11
+ // ------------------------------------------------
12
+ //
13
+ // This file is automatically generated.
14
+ // Please do not edit these files manually.
15
+ //
16
+ // ------------------------------------------------
17
+
18
+ #nullable restore
19
+
20
+ using Elastic . Clients . Elasticsearch . Fluent ;
21
+ using Elastic . Clients . Elasticsearch . Serialization ;
22
+ using System ;
23
+ using System . Collections . Generic ;
24
+ using System . Linq . Expressions ;
25
+ using System . Text . Json ;
26
+ using System . Text . Json . Serialization ;
27
+
28
+ namespace Elastic . Clients . Elasticsearch . Aggregations ;
29
+
30
+ public sealed partial class TDigestPercentilesAggregate : IAggregate
31
+ {
32
+ [ JsonInclude , JsonPropertyName ( "meta" ) ]
33
+ public IReadOnlyDictionary < string , object > ? Meta { get ; init ; }
34
+ [ JsonInclude , JsonPropertyName ( "values" ) ]
35
+ public Elastic . Clients . Elasticsearch . Aggregations . Percentiles Values { get ; init ; }
36
+ }
0 commit comments