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
| 399 400 401 | # File 'generated/google/apis/mybusiness_v3/classes.rb', line 399 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
| 392 393 394 | # File 'generated/google/apis/mybusiness_v3/classes.rb', line 392 def display_name @display_name end | 
#value ⇒ Object
The attribute value
Corresponds to the JSON property value
| 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 |