Class: Google::Apis::DfareportingV4::PopupWindowProperties
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::PopupWindowProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
Popup Window Properties.
Instance Attribute Summary collapse
-
#dimension ⇒ Google::Apis::DfareportingV4::Size
Represents the dimensions of ads, placements, creatives, or creative assets.
-
#offset ⇒ Google::Apis::DfareportingV4::OffsetPosition
Offset Position.
-
#position_type ⇒ String
Popup window position either centered or at specific coordinate.
-
#show_address_bar ⇒ Boolean
(also: #show_address_bar?)
Whether to display the browser address bar.
-
#show_menu_bar ⇒ Boolean
(also: #show_menu_bar?)
Whether to display the browser menu bar.
-
#show_scroll_bar ⇒ Boolean
(also: #show_scroll_bar?)
Whether to display the browser scroll bar.
-
#show_status_bar ⇒ Boolean
(also: #show_status_bar?)
Whether to display the browser status bar.
-
#show_tool_bar ⇒ Boolean
(also: #show_tool_bar?)
Whether to display the browser tool bar.
-
#title ⇒ String
Title of popup window.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PopupWindowProperties
constructor
A new instance of PopupWindowProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PopupWindowProperties
Returns a new instance of PopupWindowProperties.
9693 9694 9695 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9693 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension ⇒ Google::Apis::DfareportingV4::Size
Represents the dimensions of ads, placements, creatives, or creative assets.
Corresponds to the JSON property dimension
9646 9647 9648 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9646 def dimension @dimension end |
#offset ⇒ Google::Apis::DfareportingV4::OffsetPosition
Offset Position.
Corresponds to the JSON property offset
9651 9652 9653 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9651 def offset @offset end |
#position_type ⇒ String
Popup window position either centered or at specific coordinate.
Corresponds to the JSON property positionType
9656 9657 9658 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9656 def position_type @position_type end |
#show_address_bar ⇒ Boolean Also known as: show_address_bar?
Whether to display the browser address bar.
Corresponds to the JSON property showAddressBar
9661 9662 9663 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9661 def @show_address_bar end |
#show_menu_bar ⇒ Boolean Also known as:
Whether to display the browser menu bar.
Corresponds to the JSON property showMenuBar
9667 9668 9669 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9667 def @show_menu_bar end |
#show_scroll_bar ⇒ Boolean Also known as: show_scroll_bar?
Whether to display the browser scroll bar.
Corresponds to the JSON property showScrollBar
9673 9674 9675 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9673 def @show_scroll_bar end |
#show_status_bar ⇒ Boolean Also known as: show_status_bar?
Whether to display the browser status bar.
Corresponds to the JSON property showStatusBar
9679 9680 9681 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9679 def @show_status_bar end |
#show_tool_bar ⇒ Boolean Also known as: show_tool_bar?
Whether to display the browser tool bar.
Corresponds to the JSON property showToolBar
9685 9686 9687 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9685 def @show_tool_bar end |
#title ⇒ String
Title of popup window.
Corresponds to the JSON property title
9691 9692 9693 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9691 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9698 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 |