Class: Google::Apis::DfareportingV3_1::FrequencyCap

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_1/representations.rb

Overview

Frequency Cap.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ FrequencyCap

Returns a new instance of FrequencyCap



6616
6617
6618
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 6616

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#durationFixnum

Duration of time, in seconds, for this frequency cap. The maximum duration is 90 days. Acceptable values are 1 to 7776000, inclusive. Corresponds to the JSON property duration

Returns:

  • (Fixnum)


6608
6609
6610
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 6608

def duration
  @duration
end

#impressionsFixnum

Number of times an individual user can be served the ad within the specified duration. Acceptable values are 1 to 15, inclusive. Corresponds to the JSON property impressions

Returns:

  • (Fixnum)


6614
6615
6616
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 6614

def impressions
  @impressions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6621
6622
6623
6624
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 6621

def update!(**args)
  @duration = args[:duration] if args.key?(:duration)
  @impressions = args[:impressions] if args.key?(:impressions)
end