Show / Hide Table of Contents

Class BatchRunPivotReportsResponse

The batch response containing multiple pivot reports.

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

Properties

ETag

The ETag of the item.

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

Kind

Identifies what kind of resource this message is. This kind is always the fixed string "analyticsData#batchRunPivotReports". Useful to distinguish between response types in JSON.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

PivotReports

Individual responses. Each response has a separate pivot report request.

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

Implements

IDirectResponseSchema
In This Article
Back to top