Show / Hide Table of Contents

Class BatchRunReportsRequest

The batch request containing multiple report requests.

Inheritance
System.Object
BatchRunReportsRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AnalyticsData.v1alpha.Data
Assembly: Google.Apis.AnalyticsData.v1alpha.dll
Syntax
public class BatchRunReportsRequest : IDirectResponseSchema

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
[JsonProperty("entity")]
public virtual Entity Entity { get; set; }
Property Value
Type Description
Entity

ETag

The ETag of the item.

Declaration
public virtual string ETag { 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
[JsonProperty("requests")]
public virtual IList<RunReportRequest> Requests { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<RunReportRequest>

Implements

IDirectResponseSchema
In This Article
Back to top