Class: Google::Apis::FitnessV1::DataType
- Inherits:
-
Object
- Object
- Google::Apis::FitnessV1::DataType
- 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
-
#field ⇒ Array<Google::Apis::FitnessV1::DataTypeField>
A field represents one dimension of a data type.
-
#name ⇒ String
Each data type has a unique, namespaced, name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DataType
constructor
A new instance of DataType.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DataType
Returns a new instance of DataType.
563 564 565 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 563 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ Array<Google::Apis::FitnessV1::DataTypeField>
A field represents one dimension of a data type.
Corresponds to the JSON property field
555 556 557 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 555 def field @field end |
#name ⇒ String
Each data type has a unique, namespaced, name. All data types in the com.
google namespace are shared as part of the platform.
Corresponds to the JSON property name
561 562 563 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 561 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
568 569 570 571 |
# File 'lib/google/apis/fitness_v1/classes.rb', line 568 def update!(**args) @field = args[:field] if args.key?(:field) @name = args[:name] if args.key?(:name) end |