Row

每行的报告数据。例如,如果 RunReportRequest 包含:

"dimensions": [
  {
    "name": "eventName"
  },
  {
    "name": "countryId"
  }
],
"metrics": [
  {
    "name": "eventCount"
  }
]

以“in_app_purchase”为 eventName、“JP”为“countryId”和“eventCount”为 15 的一行如下所示:

"dimensionValues": [
  {
    "value": "in_app_purchase"
  },
  {
    "value": "JP"
  }
],
"metricValues": [
  {
    "value": "15"
  }
]
JSON 表示法
{
  "dimensionValues": [
    {
      object (DimensionValue)
    }
  ],
  "metricValues": [
    {
      object (MetricValue)
    }
  ]
}
字段
dimensionValues[]

object (DimensionValue)

所请求的维度值列表。在 数据透视表报告中,仅列出数据透视中包含的维度的维度值。

metricValues[]

object (MetricValue)

请求的可见指标值的列表。

MetricValue

指标的值。

JSON 表示法
{

  // Union field one_value can be only one of the following:
  "value": string
  // End of list of possible types for union field one_value.
}
字段
联合字段 one_value。指标值“one_value”只能是下列其中一项:
value

string

测量值。如需了解类型,请参阅 MetricHeader 。