Class: Google::Apis::ContentV2::CustomAttribute
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::CustomAttribute
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- 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) ⇒ CustomAttribute
constructor
A new instance of CustomAttribute.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomAttribute
Returns a new instance of CustomAttribute.
1660 1661 1662 |
# File 'generated/google/apis/content_v2/classes.rb', line 1660 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
1640 1641 1642 |
# File 'generated/google/apis/content_v2/classes.rb', line 1640 def name @name end |
#type ⇒ String
The type of the attribute. Acceptable values are: - "boolean
" - "
datetimerange
" - "float
" - "group
" - "int
" - "price
" - "text
" - "
time
" - "url
"
Corresponds to the JSON property type
1647 1648 1649 |
# File 'generated/google/apis/content_v2/classes.rb', line 1647 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
1653 1654 1655 |
# File 'generated/google/apis/content_v2/classes.rb', line 1653 def unit @unit end |
#value ⇒ String
The value of the attribute.
Corresponds to the JSON property value
1658 1659 1660 |
# File 'generated/google/apis/content_v2/classes.rb', line 1658 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1665 1666 1667 1668 1669 1670 |
# File 'generated/google/apis/content_v2/classes.rb', line 1665 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 |