Reference documentation and code samples for the Google Analytics Data V1alpha Client class Row.
Report data for each row.
For example if RunReportRequest contains:
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
One row with 'in_app_purchase' as the eventName, 'JP' as the countryId, and 15 as the eventCount, would be:
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
Generated from protobuf message google.analytics.data.v1alpha.Row
Namespace
Google \ Analytics \ Data \ V1alphaMethods
__construct
Constructor.
Parameters | |
---|---|
Name | Description |
data |
array
Optional. Data for populating the Message object. |
↳ dimension_values |
array<Google\Analytics\Data\V1alpha\DimensionValue>
List of requested dimension values. In a PivotReport, dimension_values are only listed for dimensions included in a pivot. |
↳ metric_values |
array<Google\Analytics\Data\V1alpha\MetricValue>
List of requested visible metric values. |
getDimensionValues
List of requested dimension values. In a PivotReport, dimension_values are only listed for dimensions included in a pivot.
Returns | |
---|---|
Type | Description |
Google\Protobuf\Internal\RepeatedField |
setDimensionValues
List of requested dimension values. In a PivotReport, dimension_values are only listed for dimensions included in a pivot.
Parameter | |
---|---|
Name | Description |
var |
array<Google\Analytics\Data\V1alpha\DimensionValue>
|
Returns | |
---|---|
Type | Description |
$this |
getMetricValues
List of requested visible metric values.
Returns | |
---|---|
Type | Description |
Google\Protobuf\Internal\RepeatedField |
setMetricValues
List of requested visible metric values.
Parameter | |
---|---|
Name | Description |
var |
array<Google\Analytics\Data\V1alpha\MetricValue>
|
Returns | |
---|---|
Type | Description |
$this |