Class: Google::Apis::FitnessV1::MapValue
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FitnessV1::MapValue
 
- 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
Overview
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.
Instance Attribute Summary collapse
- 
  
    
      #fp_val  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Floating point value. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MapValue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MapValue. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MapValue
Returns a new instance of MapValue
| 828 829 830 | # File 'generated/google/apis/fitness_v1/classes.rb', line 828 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#fp_val ⇒ Float
Floating point value.
Corresponds to the JSON property fpVal
| 826 827 828 | # File 'generated/google/apis/fitness_v1/classes.rb', line 826 def fp_val @fp_val end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 833 834 835 | # File 'generated/google/apis/fitness_v1/classes.rb', line 833 def update!(**args) @fp_val = args[:fp_val] if args.key?(:fp_val) end |