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.V1Alpha
Assembly: Google.Analytics.Data.V1Alpha.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

Entity

A property whose events are tracked. This entity must be specified for the batch. The entity within RunReportRequest may either be unspecified or consistent with this entity.

Declaration
public Entity Entity { get; set; }
Property Value
Type Description
Entity

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