Show / Hide Table of Contents

Class Creative.CorrectionsData.ContextsData

All known serving contexts containing serving status information.

Inheritance
System.Object
Creative.CorrectionsData.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 correction 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 correction applies to.

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 correction 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