class Google::Apis::ManufacturersV1::ProductDetail
A product detail of the product. For more information, see support. google.com/manufacturers/answer/6124116#productdetail.
Attributes
attribute_name[RW]
The name of the attribute. Corresponds to the JSON property `attributeName` @return [String]
attribute_value[RW]
The value of the attribute. Corresponds to the JSON property `attributeValue` @return [String]
section_name[RW]
A short section name that can be reused between multiple product details. Corresponds to the JSON property `sectionName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/manufacturers_v1/classes.rb, line 655 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 660 def update!(**args) @attribute_name = args[:attribute_name] if args.key?(:attribute_name) @attribute_value = args[:attribute_value] if args.key?(:attribute_value) @section_name = args[:section_name] if args.key?(:section_name) end