class Google::Apis::DfareportingV3_4::RichMediaExitOverride

Rich Media Exit Override.

Attributes

click_through_url[RW]

Click-through URL Corresponds to the JSON property `clickThroughUrl` @return [Google::Apis::DfareportingV3_4::ClickThroughUrl]

enabled[RW]

Whether to use the clickThroughUrl. If false, the creative-level exit will be used. Corresponds to the JSON property `enabled` @return [Boolean]

enabled?[RW]

Whether to use the clickThroughUrl. If false, the creative-level exit will be used. Corresponds to the JSON property `enabled` @return [Boolean]

exit_id[RW]

ID for the override to refer to a specific exit in the creative. Corresponds to the JSON property `exitId` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 11322
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_4/classes.rb, line 11327
def update!(**args)
  @click_through_url = args[:click_through_url] if args.key?(:click_through_url)
  @enabled = args[:enabled] if args.key?(:enabled)
  @exit_id = args[:exit_id] if args.key?(:exit_id)
end