Show / Hide Table of Contents

Class RunRealtimeReportResponse

The response realtime report table corresponding to a request.

Inheritance
object
RunRealtimeReportResponse
Implements
IMessage<RunRealtimeReportResponse>
IEquatable<RunRealtimeReportResponse>
IDeepCloneable<RunRealtimeReportResponse>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.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
RepeatedField<DimensionHeader>

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
public string Kind { get; set; }
Property Value
Type Description
string

Maximums

If requested, the maximum values of metrics.

Declaration
public RepeatedField<Row> Maximums { get; }
Property Value
Type Description
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
RepeatedField<MetricHeader>

Minimums

If requested, the minimum values of metrics.

Declaration
public RepeatedField<Row> Minimums { get; }
Property Value
Type Description
RepeatedField<Row>

PropertyQuota

This Google 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. rowCount is independent of the number of rows returned in the response and the limit request parameter. For example if a query returns 175 rows and includes limit of 50 in the API request, the response will contain rowCount of 175 but only 50 rows.

Declaration
public int RowCount { get; set; }
Property Value
Type Description
int

Rows

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

Declaration
public RepeatedField<Row> Rows { get; }
Property Value
Type Description
RepeatedField<Row>

Totals

If requested, the totaled values of metrics.

Declaration
public RepeatedField<Row> Totals { get; }
Property Value
Type Description
RepeatedField<Row>
In this article
Back to top Generated by DocFX