ReportRow
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
JSON 表示法 |
{
"dimensionValues": {
string: {
object (DimensionValue )
},
...
},
"metricValues": {
string: {
object (MetricValue )
},
...
}
} |
欄位 |
dimensionValues |
map (key: string, value: object (DimensionValue ))
列的維度值對應,並使用鍵做為維度的列舉名稱。 這個物件中包含 "key": value 組合的清單,範例:{ "name": "wrench", "mass": "1.3kg", "count": "3" } 。
|
metricValues |
map (key: string, value: object (MetricValue ))
資料列中的指標值對應,並使用索引鍵做為指標的列舉名稱。如果所要求的指標未傳回任何值,地圖就不會納入該指標。 這個物件中包含 "key": value 組合的清單,範例:{ "name": "wrench", "mass": "1.3kg", "count": "3" } 。
|
DimensionValue
JSON 表示法 |
{
"value": string,
"displayLabel": string
} |
欄位 |
value |
string
維度值,以報表規格維度列舉中指定的格式表示。
|
displayLabel |
string
值的本地化字串表示形式。如未指定,應從值衍生顯示標籤。
|
MetricValue
JSON 表示法 |
{
// Union field value can be only one of the following:
"integerValue": string,
"doubleValue": number,
"microsValue": string
// End of list of possible types for union field value .
} |
欄位 |
聯集欄位 value 。以報表規格指標列舉名稱中指定的格式指標值。value 只能是下列其中一項: |
integerValue |
string (int64 format)
指標整數值。
|
doubleValue |
number
雙精度 (近似) 小數值。房價介於 0 到 1 之間。
|
microsValue |
string (int64 format)
金額,以微量為單位。一百萬等於一單位。貨幣值是以要求中指定的單位 (USD、EUR 或其他) 為單位。例如 $6.50 美元,則以 6500000 微量表示。
|
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-08-21 (世界標準時間)。
[null,null,["上次更新時間:2025-08-21 (世界標準時間)。"],[[["\u003cp\u003eReportRow objects represent a single row of data in a report, containing both dimension and metric values.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003edimensionValues\u003c/code\u003e is a map holding dimension data, with keys corresponding to dimension names and values being DimensionValue objects.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003emetricValues\u003c/code\u003e is a map containing metric data, with keys as metric names and values as MetricValue objects, noting that metrics without values are excluded.\u003c/p\u003e\n"],["\u003cp\u003eDimensionValue objects provide the raw \u003ccode\u003evalue\u003c/code\u003e and a potentially localized \u003ccode\u003edisplayLabel\u003c/code\u003e for each dimension.\u003c/p\u003e\n"],["\u003cp\u003eMetricValue objects hold the actual metric value, which can be represented as an integer (\u003ccode\u003eintegerValue\u003c/code\u003e), a double (\u003ccode\u003edoubleValue\u003c/code\u003e), or a micros value (\u003ccode\u003emicrosValue\u003c/code\u003e).\u003c/p\u003e\n"]]],[],null,["# ReportRow\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [DimensionValue](#DimensionValue)\n - [JSON representation](#DimensionValue.SCHEMA_REPRESENTATION)\n- [MetricValue](#MetricValue)\n - [JSON representation](#MetricValue.SCHEMA_REPRESENTATION)\n\nA row of the returning report.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"dimensionValues\": { string: { object (/admob/api/reference/rest/v1beta/ReportRow#DimensionValue) }, ... }, \"metricValues\": { string: { object (/admob/api/reference/rest/v1beta/ReportRow#MetricValue) }, ... } } ``` |\n\n| Fields ||\n|-------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `dimensionValues` | `map (key: string, value: object (`[DimensionValue](/admob/api/reference/rest/v1beta/ReportRow#DimensionValue)`))` Map of dimension values in a row, with keys as enum name of the dimensions. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n| `metricValues` | `map (key: string, value: object (`[MetricValue](/admob/api/reference/rest/v1beta/ReportRow#MetricValue)`))` Map of metric values in a row, with keys as enum name of the metrics. If a metric being requested has no value returned, the map will not include it. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n\nDimensionValue\n--------------\n\nRepresentation of a dimension value.\n\n| JSON representation |\n|-----------------------------------------------------|\n| ``` { \"value\": string, \"displayLabel\": string } ``` |\n\n| Fields ||\n|----------------|--------------------------------------------------------------------------------------------------------------------------------|\n| `value` | `string` Dimension value in the format specified in the report's spec Dimension enum. |\n| `displayLabel` | `string` The localized string representation of the value. If unspecified, the display label should be derived from the value. |\n\nMetricValue\n-----------\n\nRepresentation of a metric value.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { // Union field `value` can be only one of the following: \"integerValue\": string, \"doubleValue\": number, \"microsValue\": string // End of list of possible types for union field `value`. } ``` |\n\n| Fields ||\n|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Union field `value`. Metric value in the format specified in the report's spec Metric enum name. `value` can be only one of the following: ||\n| `integerValue` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Metric integer value. |\n| `doubleValue` | `number` Double precision (approximate) decimal values. Rates are from 0 to 1. |\n| `microsValue` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Amount in micros. One million is equivalent to one unit. Currency value is in the unit (USD, EUR or other) specified by the request. For example, $6.50 whould be represented as 6500000 micros. |"]]