class Google::Apis::DfareportingV2_1::PopupWindowProperties

Popup Window Properties.

Attributes

dimension[RW]

Represents the dimensions of ads, placements, creatives, or creative assets. Corresponds to the JSON property `dimension` @return [Google::Apis::DfareportingV2_1::Size]

offset[RW]

Offset Position. Corresponds to the JSON property `offset` @return [Google::Apis::DfareportingV2_1::OffsetPosition]

position_type[RW]

Popup window position either centered or at specific coordinate. Corresponds to the JSON property `positionType` @return [String]

show_address_bar[RW]

Whether to display the browser address bar. Corresponds to the JSON property `showAddressBar` @return [Boolean]

show_address_bar?[RW]

Whether to display the browser address bar. Corresponds to the JSON property `showAddressBar` @return [Boolean]

show_menu_bar[RW]

Whether to display the browser menu bar. Corresponds to the JSON property `showMenuBar` @return [Boolean]

show_menu_bar?[RW]

Whether to display the browser menu bar. Corresponds to the JSON property `showMenuBar` @return [Boolean]

show_scroll_bar[RW]

Whether to display the browser scroll bar. Corresponds to the JSON property `showScrollBar` @return [Boolean]

show_scroll_bar?[RW]

Whether to display the browser scroll bar. Corresponds to the JSON property `showScrollBar` @return [Boolean]

show_status_bar[RW]

Whether to display the browser status bar. Corresponds to the JSON property `showStatusBar` @return [Boolean]

show_status_bar?[RW]

Whether to display the browser status bar. Corresponds to the JSON property `showStatusBar` @return [Boolean]

show_tool_bar[RW]

Whether to display the browser tool bar. Corresponds to the JSON property `showToolBar` @return [Boolean]

show_tool_bar?[RW]

Whether to display the browser tool bar. Corresponds to the JSON property `showToolBar` @return [Boolean]

title[RW]

Title of popup window. Corresponds to the JSON property `title` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/dfareporting_v2_1/classes.rb, line 7977
def update!(**args)
  @dimension = args[:dimension] unless args[:dimension].nil?
  @offset = args[:offset] unless args[:offset].nil?
  @position_type = args[:position_type] unless args[:position_type].nil?
  @show_address_bar = args[:show_address_bar] unless args[:show_address_bar].nil?
  @show_menu_bar = args[:show_menu_bar] unless args[:show_menu_bar].nil?
  @show_scroll_bar = args[:show_scroll_bar] unless args[:show_scroll_bar].nil?
  @show_status_bar = args[:show_status_bar] unless args[:show_status_bar].nil?
  @show_tool_bar = args[:show_tool_bar] unless args[:show_tool_bar].nil?
  @title = args[:title] unless args[:title].nil?
end