Class: Google::Apis::DfareportingV3_2::OffsetPosition
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_2::OffsetPosition
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb
Overview
Offset Position.
Instance Attribute Summary collapse
-
#left ⇒ Fixnum
Offset distance from left side of an asset or a window.
-
#top ⇒ Fixnum
Offset distance from top side of an asset or a window.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OffsetPosition
constructor
A new instance of OffsetPosition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OffsetPosition
Returns a new instance of OffsetPosition
7614 7615 7616 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7614 def initialize(**args) update!(**args) end |
Instance Attribute Details
#left ⇒ Fixnum
Offset distance from left side of an asset or a window.
Corresponds to the JSON property left
7607 7608 7609 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7607 def left @left end |
#top ⇒ Fixnum
Offset distance from top side of an asset or a window.
Corresponds to the JSON property top
7612 7613 7614 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7612 def top @top end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7619 7620 7621 7622 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7619 def update!(**args) @left = args[:left] if args.key?(:left) @top = args[:top] if args.key?(:top) end |