class Google::Apis::DisplayvideoV1::LookbackWindow
Specifies how many days into the past to look when determining whether to record a conversion.
Attributes
click_days[RW]
Lookback window, in days, from the last time a given user clicked on one of your ads. Corresponds to the JSON property `clickDays` @return [Fixnum]
impression_days[RW]
Lookback window, in days, from the last time a given user viewed one of your ads. Corresponds to the JSON property `impressionDays` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 7008 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/displayvideo_v1/classes.rb, line 7013 def update!(**args) @click_days = args[:click_days] if args.key?(:click_days) @impression_days = args[:impression_days] if args.key?(:impression_days) end