Class: Google::Apis::DfareportingV4::ObaIcon

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

Overview

Online Behavioral Advertiser icon.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ObaIcon

Returns a new instance of ObaIcon.



8024
8025
8026
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8024

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

Instance Attribute Details

#icon_click_through_urlString

URL to redirect to when an OBA icon is clicked. Corresponds to the JSON property iconClickThroughUrl

Returns:

  • (String)


7985
7986
7987
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7985

def icon_click_through_url
  @icon_click_through_url
end

#icon_click_tracking_urlString

URL to track click when an OBA icon is clicked. Corresponds to the JSON property iconClickTrackingUrl

Returns:

  • (String)


7990
7991
7992
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7990

def icon_click_tracking_url
  @icon_click_tracking_url
end

#icon_view_tracking_urlString

URL to track view when an OBA icon is clicked. Corresponds to the JSON property iconViewTrackingUrl

Returns:

  • (String)


7995
7996
7997
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7995

def icon_view_tracking_url
  @icon_view_tracking_url
end

#programString

Identifies the industry initiative that the icon supports. For example, AdChoices. Corresponds to the JSON property program

Returns:

  • (String)


8001
8002
8003
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8001

def program
  @program
end

#resource_urlString

OBA icon resource URL. Campaign Manager only supports image and JavaScript icons. Learn more Corresponds to the JSON property resourceUrl

Returns:

  • (String)


8007
8008
8009
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8007

def resource_url
  @resource_url
end

#sizeGoogle::Apis::DfareportingV4::Size

Represents the dimensions of ads, placements, creatives, or creative assets. Corresponds to the JSON property size



8012
8013
8014
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8012

def size
  @size
end

#x_positionString

OBA icon x coordinate position. Accepted values are left or right. Corresponds to the JSON property xPosition

Returns:

  • (String)


8017
8018
8019
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8017

def x_position
  @x_position
end

#y_positionString

OBA icon y coordinate position. Accepted values are top or bottom. Corresponds to the JSON property yPosition

Returns:

  • (String)


8022
8023
8024
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8022

def y_position
  @y_position
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8029
8030
8031
8032
8033
8034
8035
8036
8037
8038
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8029

def update!(**args)
  @icon_click_through_url = args[:icon_click_through_url] if args.key?(:icon_click_through_url)
  @icon_click_tracking_url = args[:icon_click_tracking_url] if args.key?(:icon_click_tracking_url)
  @icon_view_tracking_url = args[:icon_view_tracking_url] if args.key?(:icon_view_tracking_url)
  @program = args[:program] if args.key?(:program)
  @resource_url = args[:resource_url] if args.key?(:resource_url)
  @size = args[:size] if args.key?(:size)
  @x_position = args[:x_position] if args.key?(:x_position)
  @y_position = args[:y_position] if args.key?(:y_position)
end