Show / Hide Table of Contents

Class RunReportResponse

The response report table corresponding to a request.

Inheritance
System.Object
RunReportResponse
Implements
Google.Protobuf.IMessage<RunReportResponse>
System.IEquatable<RunReportResponse>
Google.Protobuf.IDeepCloneable<RunReportResponse>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.dll
Syntax
public sealed class RunReportResponse : IMessage<RunReportResponse>, IEquatable<RunReportResponse>, IDeepCloneable<RunReportResponse>, IBufferMessage, IMessage

Constructors

RunReportResponse()

Declaration
public RunReportResponse()

RunReportResponse(RunReportResponse)

Declaration
public RunReportResponse(RunReportResponse other)
Parameters
Type Name Description
RunReportResponse other

Properties

DimensionHeaders

Describes dimension columns. The number of DimensionHeaders and ordering of DimensionHeaders matches the dimensions present in rows.

Declaration
public RepeatedField<DimensionHeader> DimensionHeaders { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<DimensionHeader>

Kind

Identifies what kind of resource this message is. This kind is always the fixed string "analyticsData#runReport". Useful to distinguish between response types in JSON.

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

Maximums

If requested, the maximum values of metrics.

Declaration
public RepeatedField<Row> Maximums { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Row>

Metadata

Metadata for the report.

Declaration
public ResponseMetaData Metadata { get; set; }
Property Value
Type Description
ResponseMetaData

MetricHeaders

Describes metric columns. The number of MetricHeaders and ordering of MetricHeaders matches the metrics present in rows.

Declaration
public RepeatedField<MetricHeader> MetricHeaders { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<MetricHeader>

Minimums

If requested, the minimum values of metrics.

Declaration
public RepeatedField<Row> Minimums { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Row>

PropertyQuota

This Analytics Property's quota state including this request.

Declaration
public PropertyQuota PropertyQuota { get; set; }
Property Value
Type Description
PropertyQuota

RowCount

The total number of rows in the query result. rowCount is independent of the number of rows returned in the response, the limit request parameter, and the offset request parameter. For example if a query returns 175 rows and includes limit of 50 in the API request, the response will contain rowCount of 175 but only 50 rows.

To learn more about this pagination parameter, see Pagination.

Declaration
public int RowCount { get; set; }
Property Value
Type Description
System.Int32

Rows

Rows of dimension value combinations and metric values in the report.

Declaration
public RepeatedField<Row> Rows { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Row>

Totals

If requested, the totaled values of metrics.

Declaration
public RepeatedField<Row> Totals { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Row>
In This Article
Back to top