Class: Google::Apis::AnalyticsreportingV4::MetricHeaderEntry
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::MetricHeaderEntry
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsreporting_v4/classes.rb,
generated/google/apis/analyticsreporting_v4/representations.rb,
generated/google/apis/analyticsreporting_v4/representations.rb
Overview
Header for the metrics.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the header.
-
#type ⇒ String
The type of the metric, for example
INTEGER
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MetricHeaderEntry
constructor
A new instance of MetricHeaderEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MetricHeaderEntry
Returns a new instance of MetricHeaderEntry
595 596 597 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 595 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The name of the header.
Corresponds to the JSON property name
588 589 590 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 588 def name @name end |
#type ⇒ String
The type of the metric, for example INTEGER
.
Corresponds to the JSON property type
593 594 595 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 593 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
600 601 602 603 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 600 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |