Class: Google::Apis::ContentV2::ProductCustomAttribute
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::ProductCustomAttribute
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the attribute.
-
#type ⇒ String
The type of the attribute.
-
#unit ⇒ String
Free-form unit of the attribute.
-
#value ⇒ String
The value of the attribute.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductCustomAttribute
constructor
A new instance of ProductCustomAttribute.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProductCustomAttribute
Returns a new instance of ProductCustomAttribute
8658 8659 8660 |
# File 'generated/google/apis/content_v2/classes.rb', line 8658 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The name of the attribute. Underscores will be replaced by spaces upon
insertion.
Corresponds to the JSON property name
8640 8641 8642 |
# File 'generated/google/apis/content_v2/classes.rb', line 8640 def name @name end |
#type ⇒ String
The type of the attribute.
Corresponds to the JSON property type
8645 8646 8647 |
# File 'generated/google/apis/content_v2/classes.rb', line 8645 def type @type end |
#unit ⇒ String
Free-form unit of the attribute. Unit can only be used for values of type int,
float, or price.
Corresponds to the JSON property unit
8651 8652 8653 |
# File 'generated/google/apis/content_v2/classes.rb', line 8651 def unit @unit end |
#value ⇒ String
The value of the attribute.
Corresponds to the JSON property value
8656 8657 8658 |
# File 'generated/google/apis/content_v2/classes.rb', line 8656 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8663 8664 8665 8666 8667 8668 |
# File 'generated/google/apis/content_v2/classes.rb', line 8663 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) @unit = args[:unit] if args.key?(:unit) @value = args[:value] if args.key?(:value) end |