Package com.restfb.types.ads
Class AdCampaignFrequencyControlSpecs
- java.lang.Object
-
- com.restfb.types.AbstractFacebookType
-
- com.restfb.types.ads.AdCampaignFrequencyControlSpecs
-
- All Implemented Interfaces:
Serializable
public class AdCampaignFrequencyControlSpecs extends AbstractFacebookType
Represents the Ad Campaign Frequency Control Specs Type .- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AdCampaignFrequencyControlSpecs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEvent()
Event name, only IMPRESSIONS currently.Long
getIntervalDays()
Interval period in days, between 1 and 90 (inclusive)Long
getMaxFrequency()
The maximum frequency, only 1 is allowed now.void
setEvent(String event)
Event name, only IMPRESSIONS currently.void
setIntervalDays(Long intervalDays)
Interval period in days, between 1 and 90 (inclusive)void
setMaxFrequency(Long maxFrequency)
The maximum frequency, only 1 is allowed now.-
Methods inherited from class com.restfb.types.AbstractFacebookType
equals, hashCode, toString
-
-
-
-
Constructor Detail
-
AdCampaignFrequencyControlSpecs
public AdCampaignFrequencyControlSpecs()
-
-
Method Detail
-
getIntervalDays
public Long getIntervalDays()
Interval period in days, between 1 and 90 (inclusive)
-
setIntervalDays
public void setIntervalDays(Long intervalDays)
Interval period in days, between 1 and 90 (inclusive)
-
getMaxFrequency
public Long getMaxFrequency()
The maximum frequency, only 1 is allowed now.
-
setMaxFrequency
public void setMaxFrequency(Long maxFrequency)
The maximum frequency, only 1 is allowed now.
-
-