class Google::Apis::FitnessV1::Device

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:

two nexus 5 phones, for instance)

may give different patterns than those on a phone)

Attributes

manufacturer[RW]

Manufacturer of the product/hardware. Corresponds to the JSON property `manufacturer` @return [String]

model[RW]

End-user visible model name for the device. Corresponds to the JSON property `model` @return [String]

type[RW]

A constant representing the type of the device. Corresponds to the JSON property `type` @return [String]

uid[RW]

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. Corresponds to the JSON property `uid` @return [String]

version[RW]

Version string for the device hardware/software. Corresponds to the JSON property `version` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/fitness_v1/classes.rb, line 654
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/fitness_v1/classes.rb, line 659
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