Show / Hide Table of Contents

Class AdUnit.FeedAdsSettingsData

Settings specific to feed ads (AFF) - deprecated.

Inheritance
System.Object
AdUnit.FeedAdsSettingsData
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.AdSense.v1_4.Data
Assembly: Google.Apis.AdSense.v1_4.dll
Syntax
public class FeedAdsSettingsData

Properties

AdPosition

The position of the ads relative to the feed entries.

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

Frequency

The frequency at which ads should appear in the feed (i.e. every N entries).

Declaration
[JsonProperty("frequency")]
public virtual int? Frequency { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MinimumWordCount

The minimum length an entry should be in order to have attached ads.

Declaration
[JsonProperty("minimumWordCount")]
public virtual int? MinimumWordCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Type

The type of ads which should appear.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top