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" } ]
Implements
Inherited Members
Namespace: Google.Apis.AnalyticsData.v1beta.Data
Assembly: Google.Apis.AnalyticsData.v1beta.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 |
---|---|
IList<DimensionValue> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
MetricValues
List of requested visible metric values.
Declaration
[JsonProperty("metricValues")]
public virtual IList<MetricValue> MetricValues { get; set; }
Property Value
Type | Description |
---|---|
IList<MetricValue> |