Class: Google::Apis::MybusinessV3::AttributeValueMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/mybusiness_v3/classes.rb,
generated/google/apis/mybusiness_v3/representations.rb,
generated/google/apis/mybusiness_v3/representations.rb

Overview

Metadata for supported attribute values

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AttributeValueMetadata

Returns a new instance of AttributeValueMetadata



399
400
401
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 399

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

Instance Attribute Details

#display_nameString

The display name for this value, localised where available otherwise in English. Corresponds to the JSON property displayName

Returns:

  • (String)


392
393
394
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 392

def display_name
  @display_name
end

#valueObject

The attribute value Corresponds to the JSON property value

Returns:

  • (Object)


397
398
399
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 397

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



404
405
406
407
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 404

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @value = args[:value] if args.key?(:value)
end