Show / Hide Table of Contents

Class UserPageLoadMetricV5

A CrUX metric object for a single metric and form factor.

Inheritance
System.Object
UserPageLoadMetricV5
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.PagespeedInsights.v5.Data
Assembly: Google.Apis.PagespeedInsights.v5.dll
Syntax
public class UserPageLoadMetricV5 : IDirectResponseSchema

Properties

Category

The category of the specific time metric.

Declaration
[JsonProperty("category")]
public virtual string Category { get; set; }
Property Value
Type Description
System.String

Distributions

Metric distributions. Proportions should sum up to 1.

Declaration
[JsonProperty("distributions")]
public virtual IList<Bucket> Distributions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Bucket>

ETag

The ETag of the item.

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

FormFactor

Identifies the form factor of the metric being collected.

Declaration
[JsonProperty("formFactor")]
public virtual string FormFactor { get; set; }
Property Value
Type Description
System.String

Median

The median number of the metric, in millisecond.

Declaration
[JsonProperty("median")]
public virtual int? Median { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MetricId

Identifies the type of the metric.

Declaration
[JsonProperty("metricId")]
public virtual string MetricId { get; set; }
Property Value
Type Description
System.String

Percentile

We use this field to store certain percentile value for this metric. For v4, this field contains pc50. For v5, this field contains pc90.

Declaration
[JsonProperty("percentile")]
public virtual int? Percentile { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top