Show / Hide Table of Contents

Class PretargetingConfig.VideoPlayerSizesData

Video requests satisfying any of these player size constraints will match.

Inheritance
System.Object
PretargetingConfig.VideoPlayerSizesData
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.AdExchangeBuyer.v1_4.Data
Assembly: Google.Apis.AdExchangeBuyer.v1_4.dll
Syntax
public class VideoPlayerSizesData

Properties

AspectRatio

The type of aspect ratio. Leave this field blank to match all aspect ratios.

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

MinHeight

The minimum player height in pixels. Leave this field blank to match any player height.

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

MinWidth

The minimum player width in pixels. Leave this field blank to match any player width.

Declaration
[JsonProperty("minWidth")]
public virtual long? MinWidth { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
In This Article
Back to top