Show / Hide Table of Contents

Class ReportRow

A row of the returning report.

Inheritance
System.Object
ReportRow
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AdMob.v1.Data
Assembly: Google.Apis.AdMob.v1.dll
Syntax
public class ReportRow : IDirectResponseSchema

Properties

DimensionValues

Map of dimension values in a row, with keys as enum name of the dimensions.

Declaration
[JsonProperty("dimensionValues")]
public virtual IDictionary<string, ReportRowDimensionValue> DimensionValues { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, ReportRowDimensionValue>

ETag

The ETag of the item.

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

MetricValues

Map of metric values in a row, with keys as enum name of the metrics. If a metric being requested has no value returned, the map will not include it.

Declaration
[JsonProperty("metricValues")]
public virtual IDictionary<string, ReportRowMetricValue> MetricValues { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, ReportRowMetricValue>

Implements

IDirectResponseSchema
Back to top