Class: Google::Apis::FitnessV1::Device
- Inherits:
-
Object
- Object
- Google::Apis::FitnessV1::Device
- 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
Overview
Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version.
Instance Attribute Summary collapse
-
#manufacturer ⇒ String
Manufacturer of the product/hardware.
-
#model ⇒ String
End-user visible model name for the device.
-
#type ⇒ String
A constant representing the type of the device.
-
#uid ⇒ String
The serial number or other unique ID for the hardware.
-
#version ⇒ String
Version string for the device hardware/software.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Device
constructor
A new instance of Device.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Device
Returns a new instance of Device.
707 708 709 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 707 def initialize(**args) update!(**args) end |
Instance Attribute Details
#manufacturer ⇒ String
Manufacturer of the product/hardware.
Corresponds to the JSON property manufacturer
681 682 683 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 681 def manufacturer @manufacturer end |
#model ⇒ String
End-user visible model name for the device.
Corresponds to the JSON property model
686 687 688 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 686 def model @model end |
#type ⇒ String
A constant representing the type of the device.
Corresponds to the JSON property type
691 692 693 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 691 def type @type end |
#uid ⇒ String
The serial number or other unique ID for the hardware. This field is
obfuscated when read by any REST or Android client that did not create the
data source. Only the data source creator will see the uid field in clear and
normal form. The obfuscation preserves equality; that is, given two IDs, if
id1 == id2, obfuscated(id1) == obfuscated(id2).
Corresponds to the JSON property uid
700 701 702 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 700 def uid @uid end |
#version ⇒ String
Version string for the device hardware/software.
Corresponds to the JSON property version
705 706 707 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 705 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
712 713 714 715 716 717 718 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 712 def update!(**args) @manufacturer = args[:manufacturer] if args.key?(:manufacturer) @model = args[:model] if args.key?(:model) @type = args[:type] if args.key?(:type) @uid = args[:uid] if args.key?(:uid) @version = args[:version] if args.key?(:version) end |