Class: Google::Apis::ManufacturersV1::FeatureDescription
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ManufacturersV1::FeatureDescription
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/manufacturers_v1/classes.rb,
 generated/google/apis/manufacturers_v1/representations.rb,
 generated/google/apis/manufacturers_v1/representations.rb
Overview
A feature description of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#featuredesc.
Instance Attribute Summary collapse
- 
  
    
      #headline  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A short description of the feature. 
- 
  
    
      #image  ⇒ Google::Apis::ManufacturersV1::Image 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An image. 
- 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A detailed description of the feature. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FeatureDescription 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FeatureDescription. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FeatureDescription
Returns a new instance of FeatureDescription
| 397 398 399 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 397 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#headline ⇒ String
A short description of the feature.
Corresponds to the JSON property headline
| 385 386 387 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 385 def headline @headline end | 
#image ⇒ Google::Apis::ManufacturersV1::Image
An image.
Corresponds to the JSON property image
| 390 391 392 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 390 def image @image end | 
#text ⇒ String
A detailed description of the feature.
Corresponds to the JSON property text
| 395 396 397 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 395 def text @text end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 402 403 404 405 406 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 402 def update!(**args) @headline = args[:headline] if args.key?(:headline) @image = args[:image] if args.key?(:image) @text = args[:text] if args.key?(:text) end |