AI-generated Key Takeaways
- 
          Each row of report data contains dimension values and metric values. 
- 
          Dimension values are listed for dimensions included in the report or pivot. 
- 
          Metric values represent the measured value and their type can be found in the MetricHeader. 
Report data for each row. For example if RunReportRequest contains:
"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:
"dimensionValues": [
  {
    "value": "in_app_purchase"
  },
  {
    "value": "JP"
  }
],
"metricValues": [
  {
    "value": "15"
  }
]
| JSON representation | 
|---|
| { "dimensionValues": [ { object ( | 
| Fields | |
|---|---|
| dimension | 
 List of requested dimension values. In a PivotReport, dimensionValues are only listed for dimensions included in a pivot. | 
| metric | 
 List of requested visible metric values. | 
MetricValue
The value of a metric.
| JSON representation | 
|---|
| { // Union field | 
| Fields | |
|---|---|
| Union field one_value. One of metric valueone_valuecan be only one of the following: | |
| value | 
 Measurement value. See MetricHeader for type. |