Class AggregationResultHistogramBucket
A histogram bucket with a lower and upper bound, and a count of items with a field value between those bounds. The lower bound is inclusive and the upper bound is exclusive. Lower bound may be -infinity and upper bound may be infinity.
Implements
Inherited Members
Namespace: Google.Apis.MigrationCenterAPI.v1alpha1.Data
Assembly: Google.Apis.MigrationCenterAPI.v1alpha1.dll
Syntax
public class AggregationResultHistogramBucket : IDirectResponseSchema
Properties
Count
Count of items in the bucket.
Declaration
[JsonProperty("count")]
public virtual long? Count { get; set; }
Property Value
Type | Description |
---|---|
long? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
LowerBound
Lower bound - inclusive.
Declaration
[JsonProperty("lowerBound")]
public virtual double? LowerBound { get; set; }
Property Value
Type | Description |
---|---|
double? |
UpperBound
Upper bound - exclusive.
Declaration
[JsonProperty("upperBound")]
public virtual double? UpperBound { get; set; }
Property Value
Type | Description |
---|---|
double? |