Show / Hide Table of Contents

Class RunRealtimeReportResponse

The response realtime report table corresponding to a request.

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

Properties

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#runRealtimeReport". Useful to distinguish between response types in JSON.

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

Maximums

If requested, the maximum values of metrics.

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

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>

Minimums

If requested, the minimum values of metrics.

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

PropertyQuota

This Analytics Property's Realtime quota state including this request.

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

RowCount

The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain row_count = 175 but only 50 rows.

Declaration
[JsonProperty("rowCount")]
public virtual int? RowCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

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>

Totals

If requested, the totaled values of metrics.

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

Implements

IDirectResponseSchema
In This Article
Back to top