Class: Google::Apis::FitnessV1::ValueMapValEntry
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FitnessV1::ValueMapValEntry
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/fitness_v1/classes.rb,
 generated/google/apis/fitness_v1/representations.rb,
 generated/google/apis/fitness_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property key.
- 
  
    
      #value  ⇒ Google::Apis::FitnessV1::MapValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Holder object for the value of an entry in a map field of a data point. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ValueMapValEntry 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ValueMapValEntry. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValueMapValEntry
Returns a new instance of ValueMapValEntry
| 970 971 972 | # File 'generated/google/apis/fitness_v1/classes.rb', line 970 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#key ⇒ String
Corresponds to the JSON property key
| 962 963 964 | # File 'generated/google/apis/fitness_v1/classes.rb', line 962 def key @key end | 
#value ⇒ Google::Apis::FitnessV1::MapValue
Holder object for the value of an entry in a map field of a data point.
A map value supports a subset of the formats that the regular Value supports.
Corresponds to the JSON property value
| 968 969 970 | # File 'generated/google/apis/fitness_v1/classes.rb', line 968 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 975 976 977 978 | # File 'generated/google/apis/fitness_v1/classes.rb', line 975 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |