Class: Google::Apis::ContentV2::ProductCustomAttribute

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) ⇒ ProductCustomAttribute

Returns a new instance of ProductCustomAttribute



8435
8436
8437
# File 'generated/google/apis/content_v2/classes.rb', line 8435

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)


8417
8418
8419
# File 'generated/google/apis/content_v2/classes.rb', line 8417

def name
  @name
end

#typeString

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

Returns:

  • (String)


8422
8423
8424
# File 'generated/google/apis/content_v2/classes.rb', line 8422

def type
  @type
end

#unitString

Free-form unit of the attribute. Unit can only be used for values of type INT or FLOAT. Corresponds to the JSON property unit

Returns:

  • (String)


8428
8429
8430
# File 'generated/google/apis/content_v2/classes.rb', line 8428

def unit
  @unit
end

#valueString

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

Returns:

  • (String)


8433
8434
8435
# File 'generated/google/apis/content_v2/classes.rb', line 8433

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8440
8441
8442
8443
8444
8445
# File 'generated/google/apis/content_v2/classes.rb', line 8440

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