HistogramQueryResult(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Histogram result that matches HistogramQuery specified in searches.
Attributes
Name | Description |
histogram_query |
str
Requested histogram expression. |
histogram |
Mapping[str, int]
A map from the values of the facet associated with distinct values to the number of matching entries with corresponding value. The key format is: - (for string histogram) string values stored in the field. - (for named numeric bucket) name specified in ``bucket()`` function, like for ``bucket(0, MAX, "non-negative")``, the key will be ``non-negative``. - (for anonymous numeric bucket) range formatted as `` |
Inheritance
builtins.object > proto.message.Message > HistogramQueryResultClasses
HistogramEntry
HistogramEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)
The abstract base class for a message.
Name | Description |
kwargs |
dict
Keys and values corresponding to the fields of the message. |
mapping |
Union[dict, `.Message`]
A dictionary or message to be used to determine the values for this message. |
ignore_unknown_fields |
Optional(bool)
If True, do not raise errors for unknown fields. Only applied if |