class Google::Apis::DfareportingV2_1::FsCommand
Attributes
left[RW]
Distance from the left of the browser.Applicable when positionOption is DISTANCE_FROM_TOP_LEFT_CORNER. Corresponds to the JSON property `left` @return [Fixnum]
position_option[RW]
Position in the browser where the window will open. Corresponds to the JSON property `positionOption` @return [String]
top[RW]
Distance from the top of the browser. Applicable when positionOption is DISTANCE_FROM_TOP_LEFT_CORNER. Corresponds to the JSON property `top` @return [Fixnum]
window_height[RW]
Height of the window. Corresponds to the JSON property `windowHeight` @return [Fixnum]
window_width[RW]
Width of the window. Corresponds to the JSON property `windowWidth` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 5782 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 5787 def update!(**args) @left = args[:left] unless args[:left].nil? @position_option = args[:position_option] unless args[:position_option].nil? @top = args[:top] unless args[:top].nil? @window_height = args[:window_height] unless args[:window_height].nil? @window_width = args[:window_width] unless args[:window_width].nil? end