Class QueryResponse
Response payload sent back to a physical web client. This response contains the record found based on the
identiers present in a QueryRequest
. The returned response will have a record, and sometimes details on
normalization actions taken on the request that were necessary to make the request successful.
Implements
Inherited Members
Namespace: Google.Apis.ChromeUXReport.v1.Data
Assembly: Google.Apis.ChromeUXReport.v1.dll
Syntax
public class QueryResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Record
The record that was found.
Declaration
[JsonProperty("record")]
public virtual Record Record { get; set; }
Property Value
Type | Description |
---|---|
Record |
UrlNormalizationDetails
These are details about automated normalization actions that were taken in order to make the requested
url_pattern
valid.
Declaration
[JsonProperty("urlNormalizationDetails")]
public virtual UrlNormalization UrlNormalizationDetails { get; set; }
Property Value
Type | Description |
---|---|
UrlNormalization |