Show / Hide Table of Contents

Class RunRealtimeReportResponse

The response realtime report table corresponding to a request.

Inheritance
System.Object
RunRealtimeReportResponse
Implements
Google.Protobuf.IMessage<RunRealtimeReportResponse>
System.IEquatable<RunRealtimeReportResponse>
Google.Protobuf.IDeepCloneable<RunRealtimeReportResponse>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Data.V1Alpha
Assembly: Google.Analytics.Data.V1Alpha.dll
Syntax
public sealed class RunRealtimeReportResponse : IMessage<RunRealtimeReportResponse>, IEquatable<RunRealtimeReportResponse>, IDeepCloneable<RunRealtimeReportResponse>, IBufferMessage, IMessage

Constructors

RunRealtimeReportResponse()

Declaration
public RunRealtimeReportResponse()

RunRealtimeReportResponse(RunRealtimeReportResponse)

Declaration
public RunRealtimeReportResponse(RunRealtimeReportResponse other)
Parameters
Type Name Description
RunRealtimeReportResponse other

Properties

DimensionHeaders

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

Declaration
public RepeatedField<DimensionHeader> DimensionHeaders { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<DimensionHeader>

Maximums

If requested, the maximum values of metrics.

Declaration
public RepeatedField<Row> Maximums { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Row>

MetricHeaders

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

Declaration
public RepeatedField<MetricHeader> MetricHeaders { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<MetricHeader>

Minimums

If requested, the minimum values of metrics.

Declaration
public RepeatedField<Row> Minimums { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Row>

PropertyQuota

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

Declaration
public 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
public int RowCount { get; set; }
Property Value
Type Description
System.Int32

Rows

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

Declaration
public RepeatedField<Row> Rows { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Row>

Totals

If requested, the totaled values of metrics.

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