Class: Google::Apis::FitnessV1::ValueMapValEntry

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ValueMapValEntry

Returns a new instance of ValueMapValEntry.



931
932
933
# File 'generated/google/apis/fitness_v1/classes.rb', line 931

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#keyString

Corresponds to the JSON property key

Returns:

  • (String)


923
924
925
# File 'generated/google/apis/fitness_v1/classes.rb', line 923

def key
  @key
end

#valueGoogle::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



929
930
931
# File 'generated/google/apis/fitness_v1/classes.rb', line 929

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



936
937
938
939
# File 'generated/google/apis/fitness_v1/classes.rb', line 936

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end