Class Bucket
A proportion of data in the total distribution, bucketed by a min/max percentage. Each bucket's range is bounded by min <= x < max, In millisecond.
Implements
Inherited Members
Namespace: Google.Apis.PagespeedInsights.v5.Data
Assembly: Google.Apis.PagespeedInsights.v5.dll
Syntax
public class Bucket : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Max
Upper bound for a bucket's range.
Declaration
[JsonProperty("max")]
public virtual int? Max { get; set; }
Property Value
Type | Description |
---|---|
int? |
Min
Lower bound for a bucket's range.
Declaration
[JsonProperty("min")]
public virtual int? Min { get; set; }
Property Value
Type | Description |
---|---|
int? |
Proportion
The proportion of data in this bucket.
Declaration
[JsonProperty("proportion")]
public virtual double? Proportion { get; set; }
Property Value
Type | Description |
---|---|
double? |