Class AdsenseReportsGenerateResponse
public class AdsenseReportsGenerateResponse : IDirectResponseSchema
- Inheritance
-
AdsenseReportsGenerateResponse
- Implements
-
IDirectResponseSchema
- Inherited Members
Constructors
AdsenseReportsGenerateResponse()
public AdsenseReportsGenerateResponse()
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.
public virtual IList<string> Averages { get; set; }
Property Value
ETag
The ETag of the item.
public virtual string ETag { get; set; }
Property Value
EndDate
The requested end date in yyyy-mm-dd format.
public virtual string EndDate { get; set; }
Property Value
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.
public virtual IList<AdsenseReportsGenerateResponse.HeadersData> Headers { get; set; }
Property Value
Kind
Kind this is, in this case adsense#report.
public virtual string Kind { get; set; }
Property Value
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.
public virtual IList<IList<string>> Rows { get; set; }
Property Value
StartDate
The requested start date in yyyy-mm-dd format.
public virtual string StartDate { get; set; }
Property Value
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.
public virtual long? TotalMatchedRows { get; set; }
Property Value
- 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.
public virtual IList<string> Totals { get; set; }
Property Value
Warnings
Any warnings associated with generation of the report.
public virtual IList<string> Warnings { get; set; }