Show / Hide Table of Contents

Class ReportResult

Result of a generated report.

Inheritance
object
ReportResult
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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

ETag

The ETag of the item.

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

EndDate

Required. End date of the range (inclusive).

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

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
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
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
long?

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
IList<string>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX