class Google::Apis::ChromeuxreportV1::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.
Attributes
normalized_url[RW]
The URL after any normalization actions. This is a valid user experience URL that could reasonably be looked up. Corresponds to the JSON property `normalizedUrl` @return [String]
original_url[RW]
The original requested URL prior to any normalization actions. Corresponds to the JSON property `originalUrl` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/chromeuxreport_v1/classes.rb, line 296 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/chromeuxreport_v1/classes.rb, line 301 def update!(**args) @normalized_url = args[:normalized_url] if args.key?(:normalized_url) @original_url = args[:original_url] if args.key?(:original_url) end