Class ReportDataResponse
Represents a response to report data request.
Implements
Inherited Members
Namespace: Google.Apis.Dfareporting.v5.Data
Assembly: Google.Apis.Dfareporting.v5.dll
Syntax
public class ReportDataResponse : IDirectResponseSchema
Properties
ColumnHeaders
Output only. Ordered descriptors of the requested column fields.
Declaration
[JsonProperty("columnHeaders")]
public virtual IList<ColumnHeader> ColumnHeaders { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<ColumnHeader> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
NextPageToken
Output only. Token to retrieve the next page of rows, or empty if end of results.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Rows
Output only. The resulting set of matching data rows.
Declaration
[JsonProperty("rows")]
public virtual IList<ReportDataRow> Rows { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<ReportDataRow> |
TotalRow
Output only. Singular aggregate total row for the entire query matching the criteria. Column headers apply in the exact same order as data rows. In the total_row: - All dimension columns contain an empty string (""), as aggregation does not apply. - Non-summable metric columns (e.g. Reach metrics) contain an empty string (""), as grand total aggregation cannot be mathematically/logically computed for them.
Declaration
[JsonProperty("totalRow")]
public virtual ReportDataRow TotalRow { get; set; }
Property Value
| Type | Description |
|---|---|
| ReportDataRow |