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)
마이크로 단위의 금액입니다. 100만은 1단위와 같습니다. 통화 값은 요청에서 지정한 단위 (USD, EUR 또는 기타)입니다. 예를 들어 $6.50는 6500000마이크로로 표시됩니다.
|
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-10-14(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-10-14(UTC)"],[[["ReportRow objects represent a single row of data in a report, containing dimension and metric values."],["DimensionValues provide the value and an optional display label for each dimension in the report."],["MetricValues store the metric's numerical value, which can be an integer, double, or amount in micros."],["The structure uses maps to associate dimension and metric names with their corresponding values."]]],["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"]]