Class: Google::Apis::DfareportingV2_6::RichMediaExitOverride

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

Overview

Rich Media Exit Override.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RichMediaExitOverride

Returns a new instance of RichMediaExitOverride.



10233
10234
10235
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10233

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

Instance Attribute Details

#click_through_urlGoogle::Apis::DfareportingV2_6::ClickThroughUrl

Click-through URL Corresponds to the JSON property clickThroughUrl



10219
10220
10221
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10219

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)


10225
10226
10227
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10225

def enabled
  @enabled
end

#exit_idString

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

Returns:

  • (String)


10231
10232
10233
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10231

def exit_id
  @exit_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10238
10239
10240
10241
10242
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10238

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