Class NumericBucketingResult
Output only. Custom numeric bucketing result.
Implements
Inherited Members
Namespace: Google.Apis.CloudTalentSolution.v3p1beta1.Data
Assembly: Google.Apis.CloudTalentSolution.v3p1beta1.dll
Syntax
public class NumericBucketingResult : IDirectResponseSchema
Properties
Counts
Count within each bucket. Its size is the length of NumericBucketingOption.bucket_bounds plus 1.
Declaration
[JsonProperty("counts")]
public virtual IList<BucketizedCount> Counts { get; set; }
Property Value
Type | Description |
---|---|
IList<BucketizedCount> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
MaxValue
Stores the maximum value of the numeric field. Is populated only if [NumericBucketingOption.requires_min_max] is set to true.
Declaration
[JsonProperty("maxValue")]
public virtual double? MaxValue { get; set; }
Property Value
Type | Description |
---|---|
double? |
MinValue
Stores the minimum value of the numeric field. Will be populated only if [NumericBucketingOption.requires_min_max] is set to true.
Declaration
[JsonProperty("minValue")]
public virtual double? MinValue { get; set; }
Property Value
Type | Description |
---|---|
double? |