Show / Hide Table of Contents

Class QueryHistoryRequest

Request payload sent by a physical web client. This request includes all necessary context to load a particular user experience history record.

Inheritance
object
QueryHistoryRequest
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 QueryHistoryRequest : IDirectResponseSchema

Properties

CollectionPeriodCount

The number of collection periods to return. If not specified, the default is 25. If present, must be in the range [1, 40].

Declaration
[JsonProperty("collectionPeriodCount")]
public virtual int? CollectionPeriodCount { get; set; }
Property Value
Type Description
int?

ETag

The ETag of the item.

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

FormFactor

The form factor is a query dimension that specifies the device class that the record's data should belong to. Note: If no form factor is specified, then a special record with aggregated data over all form factors will be returned.

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

Metrics

The metrics that should be included in the response. If none are specified then any metrics found will be returned. Allowed values: ["first_contentful_paint", "first_input_delay", "largest_contentful_paint", "cumulative_layout_shift", "experimental_time_to_first_byte", "experimental_interaction_to_next_paint"]

Declaration
[JsonProperty("metrics")]
public virtual IList<string> Metrics { get; set; }
Property Value
Type Description
IList<string>

Origin

The url pattern "origin" refers to a url pattern that is the origin of a website. Examples: "https://example.com", "https://cloud.google.com"

Declaration
[JsonProperty("origin")]
public virtual string Origin { get; set; }
Property Value
Type Description
string

Url

The url pattern "url" refers to a url pattern that is any arbitrary url. Examples: "https://example.com/", "https://cloud.google.com/why-google-cloud/"

Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX