Show / Hide Table of Contents

Class BatchRunReportsRequest

The batch request containing multiple report requests.

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

Constructors

BatchRunReportsRequest()

Declaration
public BatchRunReportsRequest()

BatchRunReportsRequest(BatchRunReportsRequest)

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

Properties

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. This property must be specified for the batch. The property within RunReportRequest may either be unspecified or consistent with this property.

Example: properties/1234

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

Requests

Individual requests. Each request has a separate report response. Each batch request is allowed up to 5 requests.

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