Class UrlNormalization
Object representing the normalization actions taken to normalize a url to achieve a higher chance of successful
lookup. These are simple automated changes that are taken when looking up the provided url_patten
would be
known to fail. Complex actions like following redirects are not handled.
Implements
Inherited Members
Namespace: Google.Apis.ChromeUXReport.v1.Data
Assembly: Google.Apis.ChromeUXReport.v1.dll
Syntax
public class UrlNormalization : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NormalizedUrl
The URL after any normalization actions. This is a valid user experience URL that could reasonably be looked up.
Declaration
[JsonProperty("normalizedUrl")]
public virtual string NormalizedUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
OriginalUrl
The original requested URL prior to any normalization actions.
Declaration
[JsonProperty("originalUrl")]
public virtual string OriginalUrl { get; set; }
Property Value
Type | Description |
---|---|
string |