Class: Google::Apis::DfareportingV3_5::PopupWindowProperties

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

Overview

Popup Window Properties.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PopupWindowProperties

Returns a new instance of PopupWindowProperties.



9280
9281
9282
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9280

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

Instance Attribute Details

#dimensionGoogle::Apis::DfareportingV3_5::Size

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



9233
9234
9235
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9233

def dimension
  @dimension
end

#offsetGoogle::Apis::DfareportingV3_5::OffsetPosition

Offset Position. Corresponds to the JSON property offset



9238
9239
9240
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9238

def offset
  @offset
end

#position_typeString

Popup window position either centered or at specific coordinate. Corresponds to the JSON property positionType

Returns:

  • (String)


9243
9244
9245
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9243

def position_type
  @position_type
end

#show_address_barBoolean Also known as: show_address_bar?

Whether to display the browser address bar. Corresponds to the JSON property showAddressBar

Returns:

  • (Boolean)


9248
9249
9250
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9248

def show_address_bar
  @show_address_bar
end

#show_menu_barBoolean Also known as: show_menu_bar?

Whether to display the browser menu bar. Corresponds to the JSON property showMenuBar

Returns:

  • (Boolean)


9254
9255
9256
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9254

def show_menu_bar
  @show_menu_bar
end

#show_scroll_barBoolean Also known as: show_scroll_bar?

Whether to display the browser scroll bar. Corresponds to the JSON property showScrollBar

Returns:

  • (Boolean)


9260
9261
9262
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9260

def show_scroll_bar
  @show_scroll_bar
end

#show_status_barBoolean Also known as: show_status_bar?

Whether to display the browser status bar. Corresponds to the JSON property showStatusBar

Returns:

  • (Boolean)


9266
9267
9268
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9266

def show_status_bar
  @show_status_bar
end

#show_tool_barBoolean Also known as: show_tool_bar?

Whether to display the browser tool bar. Corresponds to the JSON property showToolBar

Returns:

  • (Boolean)


9272
9273
9274
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9272

def show_tool_bar
  @show_tool_bar
end

#titleString

Title of popup window. Corresponds to the JSON property title

Returns:

  • (String)


9278
9279
9280
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9278

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9285
9286
9287
9288
9289
9290
9291
9292
9293
9294
9295
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9285

def update!(**args)
  @dimension = args[:dimension] if args.key?(:dimension)
  @offset = args[:offset] if args.key?(:offset)
  @position_type = args[:position_type] if args.key?(:position_type)
  @show_address_bar = args[:show_address_bar] if args.key?(:show_address_bar)
  @show_menu_bar = args[:show_menu_bar] if args.key?(:show_menu_bar)
  @show_scroll_bar = args[:show_scroll_bar] if args.key?(:show_scroll_bar)
  @show_status_bar = args[:show_status_bar] if args.key?(:show_status_bar)
  @show_tool_bar = args[:show_tool_bar] if args.key?(:show_tool_bar)
  @title = args[:title] if args.key?(:title)
end