Show / Hide Table of Contents

Class TimeseriesBin

A bin is a discrete portion of data spanning from start to end, or if no end is given, then from start to +inf. A bin's start and end values are given in the value type of the metric it represents. For example, "first contentful paint" is measured in milliseconds and exposed as ints, therefore its metric bins will use int32s for its start and end types. However, "cumulative layout shift" is measured in unitless decimals and is exposed as a decimal encoded as a string, therefore its metric bins will use strings for its value type.

Inheritance
object
TimeseriesBin
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.ChromeUXReport.v1.Data
Assembly: Google.Apis.ChromeUXReport.v1.dll
Syntax
public class TimeseriesBin : IDirectResponseSchema

Properties

Densities

The proportion of users that experienced this bin's value for the given metric in a given collection period; the index for each of these entries corresponds to an entry in the CollectionPeriods field in the HistoryRecord message, which describes when the density was observed in the field. Thus, the length of this list of densities is equal to the length of the CollectionPeriods field in the HistoryRecord message.

Declaration
[JsonProperty("densities")]
public virtual IList<double?> Densities { get; set; }
Property Value
Type Description
IList<double?>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

End

End is the end of the data bin. If end is not populated, then the bin has no end and is valid from start to +inf.

Declaration
[JsonProperty("end")]
public virtual object End { get; set; }
Property Value
Type Description
object

Start

Start is the beginning of the data bin.

Declaration
[JsonProperty("start")]
public virtual object Start { get; set; }
Property Value
Type Description
object

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX