Class: Google::Apis::DfareportingV2_3::FrequencyCap
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_3::FrequencyCap
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/representations.rb
Overview
Frequency Cap.
Instance Attribute Summary collapse
-
#duration ⇒ String
Duration of time, in seconds, for this frequency cap.
-
#impressions ⇒ String
Number of times an individual user can be served the ad within the specified duration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FrequencyCap
constructor
A new instance of FrequencyCap.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FrequencyCap
Returns a new instance of FrequencyCap
5815 5816 5817 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5815 def initialize(**args) update!(**args) end |
Instance Attribute Details
#duration ⇒ String
Duration of time, in seconds, for this frequency cap. The maximum duration is
90 days in seconds, or 7,776,000.
Corresponds to the JSON property duration
5807 5808 5809 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5807 def duration @duration end |
#impressions ⇒ String
Number of times an individual user can be served the ad within the specified
duration. The maximum allowed is 15.
Corresponds to the JSON property impressions
5813 5814 5815 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5813 def impressions @impressions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5820 5821 5822 5823 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5820 def update!(**args) @duration = args[:duration] if args.key?(:duration) @impressions = args[:impressions] if args.key?(:impressions) end |