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
System.Object
Row
Implements
Google.Protobuf.IMessage<Row>
System.IEquatable<Row>
Google.Protobuf.IDeepCloneable<Row>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.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
Google.Protobuf.Collections.RepeatedField<DimensionValue>

MetricValues

List of requested visible metric values.

Declaration
public RepeatedField<MetricValue> MetricValues { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<MetricValue>
In This Article
Back to top