public sealed class HistogramQueryResult : IMessage<HistogramQueryResult>, IEquatable<HistogramQueryResult>, IDeepCloneable<HistogramQueryResult>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Talent Solution v4 API class HistogramQueryResult.
Histogram result that matches [HistogramQuery][google.cloud.talent.v4.HistogramQuery] specified in searches.
Implements
IMessageHistogramQueryResult, IEquatableHistogramQueryResult, IDeepCloneableHistogramQueryResult, IBufferMessage, IMessageNamespace
Google.Cloud.Talent.V4Assembly
Google.Cloud.Talent.V4.dll
Constructors
HistogramQueryResult()
public HistogramQueryResult()
HistogramQueryResult(HistogramQueryResult)
public HistogramQueryResult(HistogramQueryResult other)
Parameter | |
---|---|
Name | Description |
other |
HistogramQueryResult |
Properties
Histogram
public MapField<string, long> Histogram { get; }
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 forbucket(0, MAX, "non-negative")
, the key will benon-negative
. - (for anonymous numeric bucket) range formatted as
<low>-<high>
, for example,0-1000
,MIN-0
, and0-MAX
.
Property Value | |
---|---|
Type | Description |
MapFieldstringlong |
HistogramQuery
public string HistogramQuery { get; set; }
Requested histogram expression.
Property Value | |
---|---|
Type | Description |
string |