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.



1852
1853
1854
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 1852

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)


1850
1851
1852
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 1850

def display_name
  @display_name
end

#valueObject

The attribute value Corresponds to the JSON property value

Returns:

  • (Object)


1844
1845
1846
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 1844

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1857
1858
1859
1860
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 1857

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