Class: Google::Apis::AnalyticsdataV1alpha::MetricHeader
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsdataV1alpha::MetricHeader
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsdata_v1alpha/classes.rb,
generated/google/apis/analyticsdata_v1alpha/representations.rb,
generated/google/apis/analyticsdata_v1alpha/representations.rb
Overview
Describes a metric column in the report. Visible metrics requested in a report produce column entries within rows and MetricHeaders. However, metrics used exclusively within filters or expressions do not produce columns in a report; correspondingly, those metrics do not produce headers.
Instance Attribute Summary collapse
-
#name ⇒ String
The metric's name.
-
#type ⇒ String
The metric's data type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MetricHeader
constructor
A new instance of MetricHeader.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MetricHeader
Returns a new instance of MetricHeader.
814 815 816 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 814 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The metric's name.
Corresponds to the JSON property name
807 808 809 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 807 def name @name end |
#type ⇒ String
The metric's data type.
Corresponds to the JSON property type
812 813 814 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 812 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
819 820 821 822 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 819 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |