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 )) একটি সারিতে মেট্রিক মানগুলির মানচিত্র, মেট্রিক্সের enum নাম হিসাবে কীগুলি সহ। যদি একটি মেট্রিক অনুরোধ করা হয় কোন মান ফেরত না, মানচিত্রে এটি অন্তর্ভুক্ত করা হবে না. "key": value জোড়া। উদাহরণ: { "name": "wrench", "mass": "1.3kg", "count": "3" } |
মাত্রা মান
একটি মাত্রা মান প্রতিনিধিত্ব.
JSON প্রতিনিধিত্ব |
---|
{
"value": string,
"displayLabel": string
} |
ক্ষেত্র |
---|
value | string রিপোর্টের স্পেক ডাইমেনশন enum-এ নির্দিষ্ট করা ফর্ম্যাটে মাত্রা মান। |
displayLabel | string মানের স্থানীয় স্ট্রিং উপস্থাপনা। অনির্দিষ্ট হলে, প্রদর্শন লেবেল মান থেকে প্রাপ্ত করা উচিত। |
মেট্রিক ভ্যালু
একটি মেট্রিক মানের প্রতিনিধিত্ব।
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 । রিপোর্টের নির্দিষ্ট মেট্রিক enum নামের ফর্ম্যাটে মেট্রিক মান। value নিম্নলিখিতগুলির মধ্যে একটি হতে পারে: |
integerValue | string ( int64 format) মেট্রিক পূর্ণসংখ্যার মান। |
doubleValue | number দ্বিগুণ নির্ভুলতা (আনুমানিক) দশমিক মান। রেট 0 থেকে 1 পর্যন্ত। |
microsValue | string ( int64 format) মাইক্রোতে পরিমাণ। এক মিলিয়ন এক ইউনিটের সমান। মুদ্রার মান অনুরোধ দ্বারা নির্দিষ্ট ইউনিটে (USD, EUR বা অন্য) রয়েছে। উদাহরণস্বরূপ, $6.50 কে 6500000 মাইক্রো হিসাবে উপস্থাপন করা হবে। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-08-21 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-08-21 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\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. |"]]