Class: Google::Apis::ContentV2::CustomAttribute

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CustomAttribute

Returns a new instance of CustomAttribute.



1640
1641
1642
# File 'generated/google/apis/content_v2/classes.rb', line 1640

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

The name of the attribute. Underscores will be replaced by spaces upon insertion. Corresponds to the JSON property name

Returns:

  • (String)


1622
1623
1624
# File 'generated/google/apis/content_v2/classes.rb', line 1622

def name
  @name
end

#typeString

The type of the attribute. Corresponds to the JSON property type

Returns:

  • (String)


1627
1628
1629
# File 'generated/google/apis/content_v2/classes.rb', line 1627

def type
  @type
end

#unitString

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

Returns:

  • (String)


1633
1634
1635
# File 'generated/google/apis/content_v2/classes.rb', line 1633

def unit
  @unit
end

#valueString

The value of the attribute. Corresponds to the JSON property value

Returns:

  • (String)


1638
1639
1640
# File 'generated/google/apis/content_v2/classes.rb', line 1638

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1645
1646
1647
1648
1649
1650
# File 'generated/google/apis/content_v2/classes.rb', line 1645

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