class Google::Apis::DfareportingV2_1::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_1::Size]
Offset Position. Corresponds to the JSON property `offset` @return [Google::Apis::DfareportingV2_1::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_1/classes.rb, line 7972 def initialize(**args) update!(**args) end
Public Instance Methods
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