Show / Hide Table of Contents

Class CustomViewabilityMetricConfiguration

The attributes, like playtime and percent onscreen, that define the Custom Viewability Metric.

Inheritance
System.Object
CustomViewabilityMetricConfiguration
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.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class CustomViewabilityMetricConfiguration : IDirectResponseSchema

Properties

Audible

Whether the video must be audible to count an impression.

Declaration
[JsonProperty("audible")]
public virtual bool? Audible { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

TimeMillis

The time in milliseconds the video must play for the Custom Viewability Metric to count an impression. If both this and timePercent are specified, the earlier of the two will be used.

Declaration
[JsonProperty("timeMillis")]
public virtual int? TimeMillis { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

TimePercent

The percentage of video that must play for the Custom Viewability Metric to count an impression. If both this and timeMillis are specified, the earlier of the two will be used.

Declaration
[JsonProperty("timePercent")]
public virtual int? TimePercent { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ViewabilityPercent

The percentage of video that must be on screen for the Custom Viewability Metric to count an impression.

Declaration
[JsonProperty("viewabilityPercent")]
public virtual int? ViewabilityPercent { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top