Class: Google::Apis::DfareportingV3_5::OffsetPosition

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/representations.rb

Overview

Offset Position.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OffsetPosition

Returns a new instance of OffsetPosition.



7667
7668
7669
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 7667

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#leftFixnum

Offset distance from left side of an asset or a window. Corresponds to the JSON property left

Returns:

  • (Fixnum)


7660
7661
7662
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 7660

def left
  @left
end

#topFixnum

Offset distance from top side of an asset or a window. Corresponds to the JSON property top

Returns:

  • (Fixnum)


7665
7666
7667
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 7665

def top
  @top
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7672
7673
7674
7675
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 7672

def update!(**args)
  @left = args[:left] if args.key?(:left)
  @top = args[:top] if args.key?(:top)
end