Show / Hide Table of Contents

Class ReportDataResponse

Represents a response to report data request.

Inheritance
object
ReportDataResponse
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.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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX