Show / Hide Table of Contents

Class Report

Inheritance
System.Object
Report
Implements
Google.Apis.Requests.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.AdSenseHost.v4_1.Data
Assembly: Google.Apis.AdSenseHost.v4_1.dll
Syntax
public class Report : IDirectResponseSchema

Properties

Averages

The averages of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.

Declaration
[JsonProperty("averages")]
public virtual IList<string> Averages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

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

Headers

The header information of the columns requested in the report. This is a list of headers; one for each dimension in the request, followed by one for each metric in the request.

Declaration
[JsonProperty("headers")]
public virtual IList<Report.HeadersData> Headers { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Report.HeadersData>

Kind

Kind this is, in this case adsensehost#report.

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

Rows

The output rows of the report. Each row is a list of cells; one for each dimension in the request, followed by one for each metric in the request. The dimension cells contain strings, and the metric cells contain numbers.

Declaration
[JsonProperty("rows")]
public virtual IList<IList<string>> Rows { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Collections.Generic.IList<System.String>>

TotalMatchedRows

The total number of rows matched by the report request. Fewer rows may be returned in the response due to being limited by the row count requested or the report row limit.

Declaration
[JsonProperty("totalMatchedRows")]
public virtual long? TotalMatchedRows { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Totals

The totals of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.

Declaration
[JsonProperty("totals")]
public virtual IList<string> Totals { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Warnings

Any warnings associated with generation of the report.

Declaration
[JsonProperty("warnings")]
public virtual IList<string> Warnings { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top