GroupByGeoDistanceResultItem specifies the grouping results returned for a single geographical range.
Data structure
message GroupByGeoDistanceResultItem {
optional double from = 1;
optional double to = 2;
optional int64 row_count = 3;
optional AggregationsResult sub_aggs_result = 4;
optional GroupBysResult sub_group_bys_result = 5;
}
Parameter | Type | Required | Description |
from | double | Yes | The start value of the range. |
to | double | Yes | The end value of the range. |
row_count | int64 | Yes | The total number of rows. |
sub_aggs_result | No | The returned results of the sub-aggregation operation. | |
sub_group_bys_result | No | The returned results of the sub-GroupBy operation. |