Class: Google::Apis::AnalyticsreportingV4::ColumnHeader
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::ColumnHeader
- 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
Column headers.
Instance Attribute Summary collapse
-
#dimensions ⇒ Array<String>
The dimension names in the response.
-
#metric_header ⇒ Google::Apis::AnalyticsreportingV4::MetricHeader
The headers for the metrics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ColumnHeader
constructor
A new instance of ColumnHeader.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ColumnHeader
Returns a new instance of ColumnHeader.
253 254 255 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimensions ⇒ Array<String>
The dimension names in the response.
Corresponds to the JSON property dimensions
246 247 248 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 246 def dimensions @dimensions end |
#metric_header ⇒ Google::Apis::AnalyticsreportingV4::MetricHeader
The headers for the metrics.
Corresponds to the JSON property metricHeader
251 252 253 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 251 def metric_header @metric_header end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
258 259 260 261 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 258 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) @metric_header = args[:metric_header] if args.key?(:metric_header) end |