Show / Hide Table of Contents

Class PretargetingConfig.DimensionsData

Requests which allow one of these (width, height) pairs will match. All pairs must be supported ad dimensions.

Inheritance
System.Object
PretargetingConfig.DimensionsData
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 DimensionsData

Properties

Height

Height in pixels.

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

Width

Width in pixels.

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