class Google::Apis::ManufacturersV1::FeatureDescription
A feature description of the product. For more information, see https:// support.google.com/manufacturers/answer/6124116#featuredesc.
Attributes
headline[RW]
A short description of the feature. Corresponds to the JSON property `headline` @return [String]
image[RW]
An image. Corresponds to the JSON property `image` @return [Google::Apis::ManufacturersV1::Image]
text[RW]
A detailed description of the feature. Corresponds to the JSON property `text` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/manufacturers_v1/classes.rb, line 407 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/manufacturers_v1/classes.rb, line 412 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