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
829 830 831 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 829 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fp_val ⇒ Float
Floating point value.
Corresponds to the JSON property fpVal
827 828 829 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 827 def fp_val @fp_val end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
834 835 836 |
# File 'generated/google/apis/fitness_v1/classes.rb', line 834 def update!(**args) @fp_val = args[:fp_val] if args.key?(:fp_val) end |