Class: Google::Apis::AnalyticsreportingV4::PivotHeaderEntry

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PivotHeaderEntry

Returns a new instance of PivotHeaderEntry



1306
1307
1308
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1306

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dimension_namesArray<String>

The name of the dimensions in the pivot response. Corresponds to the JSON property dimensionNames

Returns:

  • (Array<String>)


1299
1300
1301
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1299

def dimension_names
  @dimension_names
end

#dimension_valuesArray<String>

The values for the dimensions in the pivot. Corresponds to the JSON property dimensionValues

Returns:

  • (Array<String>)


1294
1295
1296
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1294

def dimension_values
  @dimension_values
end

#metricGoogle::Apis::AnalyticsreportingV4::MetricHeaderEntry

Header for the metrics. Corresponds to the JSON property metric



1304
1305
1306
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1304

def metric
  @metric
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1311
1312
1313
1314
1315
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1311

def update!(**args)
  @dimension_values = args[:dimension_values] if args.key?(:dimension_values)
  @dimension_names = args[:dimension_names] if args.key?(:dimension_names)
  @metric = args[:metric] if args.key?(:metric)
end