Show / Hide Table of Contents

Class ActiveViewVideoViewabilityMetricConfig

Configuration for custom Active View video viewability metrics.

Inheritance
System.Object
ActiveViewVideoViewabilityMetricConfig
Implements
Google.Apis.Requests.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.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class ActiveViewVideoViewabilityMetricConfig : IDirectResponseSchema

Properties

DisplayName

Required. The display name of the custom metric.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

MinimumDuration

The minimum visible video duration required (in seconds) in order for an impression to be recorded. You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).

Declaration
[JsonProperty("minimumDuration")]
public virtual string MinimumDuration { get; set; }
Property Value
Type Description
System.String

MinimumQuartile

The minimum visible video duration required, based on the video quartiles, in order for an impression to be recorded. You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).

Declaration
[JsonProperty("minimumQuartile")]
public virtual string MinimumQuartile { get; set; }
Property Value
Type Description
System.String

MinimumViewability

Required. The minimum percentage of the video ad's pixels visible on the screen in order for an impression to be recorded.

Declaration
[JsonProperty("minimumViewability")]
public virtual string MinimumViewability { get; set; }
Property Value
Type Description
System.String

MinimumVolume

Required. The minimum percentage of the video ad's volume required in order for an impression to be recorded.

Declaration
[JsonProperty("minimumVolume")]
public virtual string MinimumVolume { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top