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 微单位。
|
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-21。
[null,null,["最后更新时间 (UTC):2025-08-21。"],[[["\u003cp\u003eReportRow objects represent a single row of data in a report, containing dimension and metric values.\u003c/p\u003e\n"],["\u003cp\u003eDimensionValues provide the value and an optional display label for each dimension in the report.\u003c/p\u003e\n"],["\u003cp\u003eMetricValues store the metric's numerical value, which can be an integer, double, or amount in micros.\u003c/p\u003e\n"],["\u003cp\u003eThe structure uses maps to associate dimension and metric names with their corresponding values.\u003c/p\u003e\n"]]],["The core content defines structures for report data: `DimensionValue` and `MetricValue`. A report row, structured in JSON, contains two maps: `dimensionValues` and `metricValues`. `dimensionValues` maps dimension names to `DimensionValue` objects, each with a `value` and an optional `displayLabel`. `metricValues` maps metric names to `MetricValue` objects. A `MetricValue` contains a single value among `integerValue`, `doubleValue`, or `microsValue`, representing the metric's numerical data in various formats.\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/v1/ReportRow#DimensionValue) }, ... }, \"metricValues\": { string: { object (/admob/api/reference/rest/v1/ReportRow#MetricValue) }, ... } } ``` |\n\n| Fields ||\n|-------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `dimensionValues` | `map (key: string, value: object (`[DimensionValue](/admob/api/reference/rest/v1/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/v1/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. |"]]