Class: Google::Apis::PagespeedonlineV1::Result::FormattedResults::RuleResult::UrlBlock::Header::Arg
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PagespeedonlineV1::Result::FormattedResults::RuleResult::UrlBlock::Header::Arg
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/pagespeedonline_v1/classes.rb,
 generated/google/apis/pagespeedonline_v1/representations.rb,
 generated/google/apis/pagespeedonline_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of argument. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Argument value, as a localized string. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Arg 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Arg. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Arg
Returns a new instance of Arg
| 238 239 240 | # File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 238 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#type ⇒ String
Type of argument. One of URL, STRING_LITERAL, INT_LITERAL, BYTES, or DURATION.
Corresponds to the JSON property type
| 231 232 233 | # File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 231 def type @type end | 
#value ⇒ String
Argument value, as a localized string.
Corresponds to the JSON property value
| 236 237 238 | # File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 236 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 243 244 245 246 | # File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 243 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |