Show / Hide Table of Contents

Class ReportResult

Result of a generated report.

Inheritance
System.Object
ReportResult
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.Adsense.v2.Data
Assembly: Google.Apis.Adsense.v2.dll
Syntax
public class ReportResult : 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 Row Averages { get; set; }
Property Value
Type Description
Row

EndDate

Required. End date of the range (inclusive).

Declaration
[JsonProperty("endDate")]
public virtual Date EndDate { get; set; }
Property Value
Type Description
Date

ETag

The ETag of the item.

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

Headers

The header information; one for each dimension in the request, followed by one for each metric in the request.

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

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.

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

StartDate

Required. Start date of the range (inclusive).

Declaration
[JsonProperty("startDate")]
public virtual Date StartDate { get; set; }
Property Value
Type Description
Date

TotalMatchedRows

The total number of rows matched by the report request.

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 Row Totals { get; set; }
Property Value
Type Description
Row

Warnings

Any warnings associated with generation of the report. These warnings are always returned in English.

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

Implements

IDirectResponseSchema
In This Article
Back to top