Show / Hide Table of Contents

Class ReportRowMetricValue

Representation of a metric value.

Inheritance
System.Object
ReportRowMetricValue
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 ReportRowMetricValue : IDirectResponseSchema

Properties

DoubleValue

Double precision (approximate) decimal values. Rates are from 0 to 1.

Declaration
[JsonProperty("doubleValue")]
public virtual double? DoubleValue { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ETag

The ETag of the item.

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

IntegerValue

Metric integer value.

Declaration
[JsonProperty("integerValue")]
public virtual long? IntegerValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MicrosValue

Amount in micros. One million is equivalent to one unit. Currency value is in the unit (USD, EUR or other) specified by the request. For example, $6.50 whould be represented as 6500000 micros.

Declaration
[JsonProperty("microsValue")]
public virtual long? MicrosValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
Back to top