Show / Hide Table of Contents

Class Row

Report data for each row. For example if RunReportRequest contains: none "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: ```none "dimensionValues": [ { "value": "in_app_purchase" }, { "value": "JP" } ], "metricValues": [ { "value": "15" } ]


Inheritance
System.Object
Row
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AnalyticsData.v1alpha.Data
Assembly: Google.Apis.AnalyticsData.v1alpha.dll
Syntax
public class Row : IDirectResponseSchema

Properties

DimensionValues

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

Declaration
[JsonProperty("dimensionValues")]
public virtual IList<DimensionValue> DimensionValues { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DimensionValue>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

MetricValues

List of requested visible metric values.

Declaration
[JsonProperty("metricValues")]
public virtual IList<MetricValue> MetricValues { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<MetricValue>

Implements

IDirectResponseSchema
In This Article
Back to top