Show / Hide Table of Contents

Class BatchRunPivotReportsRequest

The batch request containing multiple pivot report requests.

Inheritance
System.Object
BatchRunPivotReportsRequest
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 BatchRunPivotReportsRequest : IDirectResponseSchema

Properties

Entity

A property whose events are tracked. This entity must be specified for the batch. The entity within RunPivotReportRequest 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 pivot report response. Each batch request is allowed up to 5 requests.

Declaration
[JsonProperty("requests")]
public virtual IList<RunPivotReportRequest> Requests { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<RunPivotReportRequest>

Implements

IDirectResponseSchema
In This Article
Back to top