各行のレポートデータ。たとえば、RunReportRequest に次の内容が含まれているとします。
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
eventName が「in_app_purchase」、countryId が「JP」、eventCount が 15 の行は次のようになります。
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
| JSON 表現 |
|---|
{ "dimensionValues": [ { object ( |
| フィールド | |
|---|---|
dimensionValues[] |
リクエストされたディメンション値のリスト。PivotReport では、ディメンション値はピボットに含まれるディメンションに対してのみリストされます。 |
metricValues[] |
リクエストされた表示指標の値のリスト。 |
MetricValue
指標の値。
| JSON 表現 |
|---|
{ // The following is a list of mutually exclusive fields. At most one of the // fields will be set in a response: "value": string // End of mutually exclusive fields. } |
| フィールド | |
|---|---|
| 指標値の 1 つ。相互に排他的なフィールドのリストを次に示します。レスポンスで設定されるフィールドは最大で 1 つです。 | |
value |
測定値。型については、MetricHeader をご覧ください。 |
| 相互に排他的なフィールドの終了。 | |