Class: Google::Apis::AnalyticsreportingV4::PivotHeaderEntry
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::PivotHeaderEntry
- 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
The headers for the each of the metric column corresponding to the metrics requested in the pivots section of the response.
Instance Attribute Summary collapse
-
#dimension_names ⇒ Array<String>
The name of the dimensions in the pivot response.
-
#dimension_values ⇒ Array<String>
The values for the dimensions in the pivot.
-
#metric ⇒ Google::Apis::AnalyticsreportingV4::MetricHeaderEntry
Header for the metrics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PivotHeaderEntry
constructor
A new instance of PivotHeaderEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PivotHeaderEntry
Returns a new instance of PivotHeaderEntry.
1079 1080 1081 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1079 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_names ⇒ Array<String>
The name of the dimensions in the pivot response.
Corresponds to the JSON property dimensionNames
1067 1068 1069 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1067 def dimension_names @dimension_names end |
#dimension_values ⇒ Array<String>
The values for the dimensions in the pivot.
Corresponds to the JSON property dimensionValues
1072 1073 1074 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1072 def dimension_values @dimension_values end |
#metric ⇒ Google::Apis::AnalyticsreportingV4::MetricHeaderEntry
Header for the metrics.
Corresponds to the JSON property metric
1077 1078 1079 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1077 def metric @metric end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1084 1085 1086 1087 1088 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1084 def update!(**args) @dimension_names = args[:dimension_names] if args.key?(:dimension_names) @dimension_values = args[:dimension_values] if args.key?(:dimension_values) @metric = args[:metric] if args.key?(:metric) end |