1
1
/**
2
- * (C) Copyright IBM Corp. 2017, 2020 .
2
+ * (C) Copyright IBM Corp. 2022 .
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
15
15
*
16
16
*/
17
17
18
- using System . Collections . Generic ;
19
18
using JsonSubTypes ;
20
19
using Newtonsoft . Json ;
21
20
@@ -25,39 +24,24 @@ namespace IBM.Watson.Discovery.v1.Model
25
24
/// An aggregation produced by Discovery to analyze the input provided.
26
25
/// </summary>
27
26
[ JsonConverter ( typeof ( JsonSubtypes ) , "type" ) ]
28
- [ JsonSubtypes . KnownSubType ( typeof ( Histogram ) , "histogram" ) ]
29
- [ JsonSubtypes . KnownSubType ( typeof ( Calculation ) , "max" ) ]
30
- [ JsonSubtypes . KnownSubType ( typeof ( Calculation ) , "min" ) ]
31
- [ JsonSubtypes . KnownSubType ( typeof ( Calculation ) , "average" ) ]
32
- [ JsonSubtypes . KnownSubType ( typeof ( Calculation ) , "sum" ) ]
33
- [ JsonSubtypes . KnownSubType ( typeof ( Calculation ) , "unique_count" ) ]
34
- [ JsonSubtypes . KnownSubType ( typeof ( Term ) , "term" ) ]
35
- [ JsonSubtypes . KnownSubType ( typeof ( Filter ) , "filter" ) ]
36
- [ JsonSubtypes . KnownSubType ( typeof ( Nested ) , "nested" ) ]
37
- [ JsonSubtypes . KnownSubType ( typeof ( Timeslice ) , "timeslice" ) ]
38
- [ JsonSubtypes . KnownSubType ( typeof ( TopHits ) , "top_hits" ) ]
27
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryHistogramAggregation ) , "histogram" ) ]
28
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryCalculationAggregation ) , "max" ) ]
29
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryCalculationAggregation ) , "min" ) ]
30
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryCalculationAggregation ) , "average" ) ]
31
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryCalculationAggregation ) , "sum" ) ]
32
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryCalculationAggregation ) , "unique_count" ) ]
33
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryTermAggregation ) , "term" ) ]
34
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryFilterAggregation ) , "filter" ) ]
35
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryNestedAggregation ) , "nested" ) ]
36
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryTimesliceAggregation ) , "timeslice" ) ]
37
+ [ JsonSubtypes . KnownSubType ( typeof ( QueryTopHitsAggregation ) , "top_hits" ) ]
39
38
public class QueryAggregation
40
39
{
41
40
/// <summary>
42
41
/// The type of aggregation command used. For example: term, filter, max, min, etc.
43
42
/// </summary>
44
43
[ JsonProperty ( "type" , NullValueHandling = NullValueHandling . Ignore ) ]
45
44
public string Type { get ; set ; }
46
- /// <summary>
47
- /// Array of aggregation results.
48
- /// </summary>
49
- [ JsonProperty ( "results" , NullValueHandling = NullValueHandling . Ignore ) ]
50
- public List < AggregationResult > Results { get ; set ; }
51
- /// <summary>
52
- /// Number of matching results.
53
- /// </summary>
54
- [ JsonProperty ( "matching_results" , NullValueHandling = NullValueHandling . Ignore ) ]
55
- public long ? MatchingResults { get ; set ; }
56
- /// <summary>
57
- /// Aggregations returned by Discovery.
58
- /// </summary>
59
- [ JsonProperty ( "aggregations" , NullValueHandling = NullValueHandling . Ignore ) ]
60
- public List < QueryAggregation > Aggregations { get ; set ; }
61
45
}
62
46
63
47
}
0 commit comments