Class Record
Record is a single Chrome UX report data record. It contains use experience statistics for a single url pattern and set of dimensions.
Implements
Inherited Members
Namespace: Google.Apis.ChromeUXReport.v1.Data
Assembly: Google.Apis.ChromeUXReport.v1.dll
Syntax
public class Record : IDirectResponseSchema
Properties
CollectionPeriod
The collection period indicates when the data reflected in this record was collected.
Declaration
[JsonProperty("collectionPeriod")]
public virtual CollectionPeriod CollectionPeriod { get; set; }
Property Value
Type | Description |
---|---|
CollectionPeriod |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Key
Key defines all of the unique querying parameters needed to look up a user experience record.
Declaration
[JsonProperty("key")]
public virtual Key Key { get; set; }
Property Value
Type | Description |
---|---|
Key |
Metrics
Metrics is the map of user experience data available for the record defined in the key field. Metrics are keyed on the metric name. Allowed key 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 IDictionary<string, Metric> Metrics { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, Metric> |