Class: Google::Apis::MybusinessV3::AttributeValueMetadata
- Inherits:
-
Object
- Object
- Google::Apis::MybusinessV3::AttributeValueMetadata
- 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
-
#display_name ⇒ String
The display name for this value, localised where available otherwise in English.
-
#value ⇒ Object
The attribute value Corresponds to the JSON property
value
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AttributeValueMetadata
constructor
A new instance of AttributeValueMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_name ⇒ String
The display name for this value, localised where available otherwise in
English.
Corresponds to the JSON property displayName
1850 1851 1852 |
# File 'generated/google/apis/mybusiness_v3/classes.rb', line 1850 def display_name @display_name end |
#value ⇒ Object
The attribute value
Corresponds to the JSON property value
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 |