class Google::Apis::DisplayvideoV1::TrackingFloodlightActivityConfig
Settings that control the behavior of a single Floodlight activity config.
Attributes
floodlight_activity_id[RW]
Required. The ID of the Floodlight activity. Corresponds to the JSON property `floodlightActivityId` @return [Fixnum]
post_click_lookback_window_days[RW]
Required. The number of days after an ad has been clicked in which a conversion may be counted. Must be between 0 and 90 inclusive. Corresponds to the JSON property `postClickLookbackWindowDays` @return [Fixnum]
post_view_lookback_window_days[RW]
Required. The number of days after an ad has been viewed in which a conversion may be counted. Must be between 0 and 90 inclusive. Corresponds to the JSON property `postViewLookbackWindowDays` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 9355 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 9360 def update!(**args) @floodlight_activity_id = args[:floodlight_activity_id] if args.key?(:floodlight_activity_id) @post_click_lookback_window_days = args[:post_click_lookback_window_days] if args.key?(:post_click_lookback_window_days) @post_view_lookback_window_days = args[:post_view_lookback_window_days] if args.key?(:post_view_lookback_window_days) end