Show / Hide Table of Contents

Class RunRealtimeReportRequest

The request to generate a realtime report.

Inheritance
System.Object
RunRealtimeReportRequest
Implements
Google.Protobuf.IMessage<RunRealtimeReportRequest>
System.IEquatable<RunRealtimeReportRequest>
Google.Protobuf.IDeepCloneable<RunRealtimeReportRequest>
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 RunRealtimeReportRequest : IMessage<RunRealtimeReportRequest>, IEquatable<RunRealtimeReportRequest>, IDeepCloneable<RunRealtimeReportRequest>, IBufferMessage, IMessage

Constructors

RunRealtimeReportRequest()

Declaration
public RunRealtimeReportRequest()

RunRealtimeReportRequest(RunRealtimeReportRequest)

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

Properties

DimensionFilter

The filter clause of dimensions. Dimensions must be requested to be used in this filter. Metrics cannot be used in this filter.

Declaration
public FilterExpression DimensionFilter { get; set; }
Property Value
Type Description
FilterExpression

Dimensions

The dimensions requested and displayed.

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

Limit

The number of rows to return. If unspecified, 10 rows are returned. If -1, all rows are returned.

Declaration
public long Limit { get; set; }
Property Value
Type Description
System.Int64

MetricAggregations

Aggregation of metrics. Aggregated metric values will be shown in rows where the dimension_values are set to "RESERVED_(MetricAggregation)".

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

MetricFilter

The filter clause of metrics. Applied at post aggregation phase, similar to SQL having-clause. Metrics must be requested to be used in this filter. Dimensions cannot be used in this filter.

Declaration
public FilterExpression MetricFilter { get; set; }
Property Value
Type Description
FilterExpression

Metrics

The metrics requested and displayed.

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

OrderBys

Specifies how rows are ordered in the response.

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

Property

A Google Analytics GA4 property identifier whose events are tracked. Specified in the URL path and not the body. To learn more, see where to find your Property ID.

Example: properties/1234

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

ReturnPropertyQuota

Toggles whether to return the current state of this Analytics Property's Realtime quota. Quota is returned in PropertyQuota.

Declaration
public bool ReturnPropertyQuota { get; set; }
Property Value
Type Description
System.Boolean
In This Article
Back to top