Class: Google::Apis::DisplayvideoV3::TargetFrequency

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

Overview

Setting that controls the average number of times the ads will show to the same person over a certain period of time.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TargetFrequency

Returns a new instance of TargetFrequency.



11532
11533
11534
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11532

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

Instance Attribute Details

#target_countFixnum

The target number of times, on average, the ads will be shown to the same person in the timespan dictated by time_unit and time_unit_count. Corresponds to the JSON property targetCount

Returns:

  • (Fixnum)


11517
11518
11519
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11517

def target_count
  @target_count
end

#time_unitString

The unit of time in which the target frequency will be applied. The following time unit is applicable: * TIME_UNIT_WEEKS Corresponds to the JSON property timeUnit

Returns:

  • (String)


11523
11524
11525
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11523

def time_unit
  @time_unit
end

#time_unit_countFixnum

The number of time_unit the target frequency will last. The following restrictions apply based on the value of time_unit: * TIME_UNIT_WEEKS - must be 1 Corresponds to the JSON property timeUnitCount

Returns:

  • (Fixnum)


11530
11531
11532
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11530

def time_unit_count
  @time_unit_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11537
11538
11539
11540
11541
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11537

def update!(**args)
  @target_count = args[:target_count] if args.key?(:target_count)
  @time_unit = args[:time_unit] if args.key?(:time_unit)
  @time_unit_count = args[:time_unit_count] if args.key?(:time_unit_count)
end