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
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>]
List of requested visible metric values. Corresponds to the JSON property `metricValues` @return [Array<Google::Apis::AnalyticsdataV1beta::MetricValue>]
Public Class Methods
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 1478 def initialize(**args) update!(**args) end
Public Instance Methods
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