Show / Hide Table of Contents

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"
  }
]
Inheritance
object
Row
Implements
IMessage<Row>
IEquatable<Row>
IDeepCloneable<Row>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.dll
Syntax
public sealed class Row : IMessage<Row>, IEquatable<Row>, IDeepCloneable<Row>, IBufferMessage, IMessage

Constructors

Row()

Declaration
public Row()

Row(Row)

Declaration
public Row(Row other)
Parameters
Type Name Description
Row other

Properties

DimensionValues

List of requested dimension values. In a PivotReport, dimension_values are only listed for dimensions included in a pivot.

Declaration
public RepeatedField<DimensionValue> DimensionValues { get; }
Property Value
Type Description
RepeatedField<DimensionValue>

MetricValues

List of requested visible metric values.

Declaration
public RepeatedField<MetricValue> MetricValues { get; }
Property Value
Type Description
RepeatedField<MetricValue>
In this article
Back to top Generated by DocFX