Show / Hide Table of Contents

Class SharedTargeting

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

Properties

ETag

The ETag of the item.

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

Exclusions

The list of values to exclude from targeting. Each value is AND'd together.

Declaration
[JsonProperty("exclusions")]
public virtual IList<TargetingValue> Exclusions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TargetingValue>

Inclusions

The list of value to include as part of the targeting. Each value is OR'd together.

Declaration
[JsonProperty("inclusions")]
public virtual IList<TargetingValue> Inclusions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TargetingValue>

Key

The key representing the shared targeting criterion.

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

Implements

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