View Source GoogleApi.AnalyticsData.V1beta.Model.Row (google_api_analytics_data v0.17.0)
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
-
dimensionValues
(type:list(GoogleApi.AnalyticsData.V1beta.Model.DimensionValue.t)
, default:nil
) - List of requested dimension values. In a PivotReport, dimension_values are only listed for dimensions included in a pivot. -
metricValues
(type:list(GoogleApi.AnalyticsData.V1beta.Model.MetricValue.t)
, default:nil
) - List of requested visible metric values.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.AnalyticsData.V1beta.Model.Row{ dimensionValues: [GoogleApi.AnalyticsData.V1beta.Model.DimensionValue.t()] | nil, metricValues: [GoogleApi.AnalyticsData.V1beta.Model.MetricValue.t()] | nil }