class Google::Apis::DfareportingV3_4::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::DfareportingV3_4::Size]

offset[RW]

Offset Position. Corresponds to the JSON property `offset` @return [Google::Apis::DfareportingV3_4::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 lib/google/apis/dfareporting_v3_4/classes.rb, line 9619
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_4/classes.rb, line 9624
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