Class: Google::Apis::DfareportingV3_4::RichMediaExitOverride

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

Overview

Rich Media Exit Override.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RichMediaExitOverride

Returns a new instance of RichMediaExitOverride.



11322
11323
11324
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11322

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

Instance Attribute Details

#click_through_urlGoogle::Apis::DfareportingV3_4::ClickThroughUrl

Click-through URL Corresponds to the JSON property clickThroughUrl



11308
11309
11310
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11308

def click_through_url
  @click_through_url
end

#enabledBoolean Also known as: enabled?

Whether to use the clickThroughUrl. If false, the creative-level exit will be used. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


11314
11315
11316
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11314

def enabled
  @enabled
end

#exit_idFixnum

ID for the override to refer to a specific exit in the creative. Corresponds to the JSON property exitId

Returns:

  • (Fixnum)


11320
11321
11322
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11320

def exit_id
  @exit_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11327
11328
11329
11330
11331
# File 'generated/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