class Google::Apis::AnalyticsdataV1beta::Row

Report data for each row. For example if RunReportRequest contains: “`none “ dimensions”: [ ` “name”: “eventName” `, ` “name”: “countryId” ` ], “metrics”: [ ` “name”: “eventCount” ` ] “` One row with 'in_app_purchase' as the eventName, 'JP' as the countryId, and 15 as the eventCount, would be: “`none “ dimensionValues”: [ ` “value”: “in_app_purchase” `, ` “value”: “JP” ` ], “ metricValues”: [ ` “value”: “15” ` ] “`

Attributes

dimension_values[RW]

List of requested dimension values. In a PivotReport, dimension_values are only listed for dimensions included in a pivot. Corresponds to the JSON property `dimensionValues` @return [Array<Google::Apis::AnalyticsdataV1beta::DimensionValue>]

metric_values[RW]

List of requested visible metric values. Corresponds to the JSON property `metricValues` @return [Array<Google::Apis::AnalyticsdataV1beta::MetricValue>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 1478
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 1483
def update!(**args)
  @dimension_values = args[:dimension_values] if args.key?(:dimension_values)
  @metric_values = args[:metric_values] if args.key?(:metric_values)
end