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

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomAttribute

Returns a new instance of CustomAttribute.



1722
1723
1724
# File 'lib/google/apis/content_v2/classes.rb', line 1722

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)


1702
1703
1704
# File 'lib/google/apis/content_v2/classes.rb', line 1702

def name
  @name
end

#typeString

The type of the attribute. Acceptable values are: - "boolean" - " datetimerange" - "float" - "group" - "int" - "price" - "text" - " time" - "url" Corresponds to the JSON property type

Returns:

  • (String)


1709
1710
1711
# File 'lib/google/apis/content_v2/classes.rb', line 1709

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)


1715
1716
1717
# File 'lib/google/apis/content_v2/classes.rb', line 1715

def unit
  @unit
end

#valueString

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

Returns:

  • (String)


1720
1721
1722
# File 'lib/google/apis/content_v2/classes.rb', line 1720

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1727
1728
1729
1730
1731
1732
# File 'lib/google/apis/content_v2/classes.rb', line 1727

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