class Google::Apis::PagespeedonlineV2::Result::FormattedResults::RuleResult
The enum-like identifier for this rule. For instance “EnableKeepAlive” or “ AvoidCssImport”. Not localized.
Attributes
List of rule groups that this rule belongs to. Each entry in the list is one of “SPEED” or “USABILITY”. Corresponds to the JSON property `groups` @return [Array<String>]
Localized name of the rule, intended for presentation to a user. Corresponds to the JSON property `localizedRuleName` @return [String]
The impact (unbounded floating point value) that implementing the suggestions for this rule would have on making the page faster. Impact is comparable between rules to determine which rule's suggestions would have a higher or lower impact on making a page faster. For instance, if enabling compression would save 1MB, while optimizing images would save 500kB, the enable compression rule would have 2x the impact of the image optimization rule, all other things being equal. Corresponds to the JSON property `ruleImpact` @return [Float]
A brief summary description for the rule, indicating at a high level what should be done to follow the rule and what benefit can be gained by doing so. Corresponds to the JSON property `summary` @return [Google::Apis::PagespeedonlineV2::FormatString]
List of blocks of URLs. Each block may contain a heading and a list of URLs. Each URL may optionally include additional details. Corresponds to the JSON property `urlBlocks` @return [Array<Google::Apis::PagespeedonlineV2::Result::FormattedResults::RuleResult::UrlBlock>]
Public Class Methods
# File generated/google/apis/pagespeedonline_v2/classes.rb, line 405 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/pagespeedonline_v2/classes.rb, line 410 def update!(**args) @groups = args[:groups] if args.key?(:groups) @localized_rule_name = args[:localized_rule_name] if args.key?(:localized_rule_name) @rule_impact = args[:rule_impact] if args.key?(:rule_impact) @summary = args[:summary] if args.key?(:summary) @url_blocks = args[:url_blocks] if args.key?(:url_blocks) end