class Google::Apis::DfareportingV2_3::PopupWindowProperties
Popup Window Properties.
Attributes
Represents the dimensions of ads, placements, creatives, or creative assets. Corresponds to the JSON property `dimension` @return [Google::Apis::DfareportingV2_3::Size]
Offset Position. Corresponds to the JSON property `offset` @return [Google::Apis::DfareportingV2_3::OffsetPosition]
Popup window position either centered or at specific coordinate. Corresponds to the JSON property `positionType` @return [String]
Whether to display the browser address bar. Corresponds to the JSON property `showAddressBar` @return [Boolean]
Whether to display the browser address bar. Corresponds to the JSON property `showAddressBar` @return [Boolean]
Whether to display the browser scroll bar. Corresponds to the JSON property `showScrollBar` @return [Boolean]
Whether to display the browser scroll bar. Corresponds to the JSON property `showScrollBar` @return [Boolean]
Whether to display the browser status bar. Corresponds to the JSON property `showStatusBar` @return [Boolean]
Whether to display the browser status bar. Corresponds to the JSON property `showStatusBar` @return [Boolean]
Whether to display the browser tool bar. Corresponds to the JSON property `showToolBar` @return [Boolean]
Whether to display the browser tool bar. Corresponds to the JSON property `showToolBar` @return [Boolean]
Title of popup window. Corresponds to the JSON property `title` @return [String]
Public Class Methods
# File generated/google/apis/dfareporting_v2_3/classes.rb, line 8044 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/dfareporting_v2_3/classes.rb, line 8049 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