Class: Google::Apis::FitnessV1::ValueMapValEntry
- Inherits:
-
Object
- Object
- Google::Apis::FitnessV1::ValueMapValEntry
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/fitness_v1/classes.rb,
lib/google/apis/fitness_v1/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ ValueMapValEntry
Returns a new instance of ValueMapValEntry.
972 973 974 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 972 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Corresponds to the JSON property key
964 965 966 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 964 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
970 971 972 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 970 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
977 978 979 980 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 977 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |