Show / Hide Table of Contents

Class RunPivotReportResponse

The response pivot report table corresponding to a pivot request.

Inheritance
System.Object
RunPivotReportResponse
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 RunPivotReportResponse : IDirectResponseSchema

Properties

Aggregates

Aggregation of metric values. Can be totals, minimums, or maximums. The returned aggregations are controlled by the metric_aggregations in the pivot. The type of aggregation returned in each row is shown by the dimension_values which are set to "RESERVED_".

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

DimensionHeaders

Describes dimension columns. The number of DimensionHeaders and ordering of DimensionHeaders matches the dimensions present in rows.

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

ETag

The ETag of the item.

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

Kind

Identifies what kind of resource this message is. This kind is always the fixed string "analyticsData#runPivotReport". Useful to distinguish between response types in JSON.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Metadata

Metadata for the report.

Declaration
[JsonProperty("metadata")]
public virtual ResponseMetaData Metadata { get; set; }
Property Value
Type Description
ResponseMetaData

MetricHeaders

Describes metric columns. The number of MetricHeaders and ordering of MetricHeaders matches the metrics present in rows.

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

PivotHeaders

Summarizes the columns and rows created by a pivot. Each pivot in the request produces one header in the response. If we have a request like this: "pivots": [{ "fieldNames": ["country", "city"] }, { "fieldNames": "eventName" }] We will have the following pivotHeaders in the response: "pivotHeaders" : [{ "dimensionHeaders": [{ "dimensionValues": [ { "value": "United Kingdom" }, { "value": "London" } ] }, { "dimensionValues": [ { "value": "Japan" }, { "value": "Osaka" } ] }] }, { "dimensionHeaders": [{ "dimensionValues": [{ "value": "session_start" }] }, { "dimensionValues": [{ "value": "scroll" }] }] }]

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

PropertyQuota

This Analytics Property's quota state including this request.

Declaration
[JsonProperty("propertyQuota")]
public virtual PropertyQuota PropertyQuota { get; set; }
Property Value
Type Description
PropertyQuota

Rows

Rows of dimension value combinations and metric values in the report.

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

Implements

IDirectResponseSchema
In This Article
Back to top