Show / Hide Table of Contents

Class Creative.ServingRestrictionsData.ContextsData

All known contexts/restrictions.

Inheritance
System.Object
Creative.ServingRestrictionsData.ContextsData
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 ContextsData

Properties

AuctionType

Only set when contextType=AUCTION_TYPE. Represents the auction types this restriction applies to.

Declaration
[JsonProperty("auctionType")]
public virtual IList<string> AuctionType { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ContextType

The type of context (e.g., location, platform, auction type, SSL-ness).

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

GeoCriteriaId

Only set when contextType=LOCATION. Represents the geo criterias this restriction applies to. Impressions are considered to match a context if either the user location or publisher location matches a given geoCriteriaId.

Declaration
[JsonProperty("geoCriteriaId")]
public virtual IList<int?> GeoCriteriaId { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int32>>

Platform

Only set when contextType=PLATFORM. Represents the platforms this restriction applies to.

Declaration
[JsonProperty("platform")]
public virtual IList<string> Platform { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>
In This Article
Back to top