Google Analytics Data V1alpha Client - Class Row (0.9.5)

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"
  }
]
```php
One row with 'in_app_purchase' as the eventName, 'JP' as the countryId, and
15 as the eventCount, would be:
```none
"dimensionValues": [
  {
    "value": "in_app_purchase"
  },
  {
    "value": "JP"
  }
],
"metricValues": [
  {
    "value": "15"
  }
]

Generated from protobuf message google.analytics.data.v1alpha.Row

Methods

__construct

Constructor.

Parameters
NameDescription
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
TypeDescription
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
NameDescription
var array<Google\Analytics\Data\V1alpha\DimensionValue>
Returns
TypeDescription
$this

getMetricValues

List of requested visible metric values.

Returns
TypeDescription
Google\Protobuf\Internal\RepeatedField

setMetricValues

List of requested visible metric values.

Parameter
NameDescription
var array<Google\Analytics\Data\V1alpha\MetricValue>
Returns
TypeDescription
$this