Class: Google::Apis::PagespeedonlineV2::FormatString::Arg::SecondaryRect

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SecondaryRect

Returns a new instance of SecondaryRect.



160
161
162
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 160

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

Instance Attribute Details

#heightFixnum

The height of the rect. Corresponds to the JSON property height

Returns:

  • (Fixnum)


143
144
145
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 143

def height
  @height
end

#leftFixnum

The left coordinate of the rect, in page coordinates. Corresponds to the JSON property left

Returns:

  • (Fixnum)


148
149
150
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 148

def left
  @left
end

#topFixnum

The top coordinate of the rect, in page coordinates. Corresponds to the JSON property top

Returns:

  • (Fixnum)


153
154
155
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 153

def top
  @top
end

#widthFixnum

The width of the rect. Corresponds to the JSON property width

Returns:

  • (Fixnum)


158
159
160
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 158

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



165
166
167
168
169
170
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 165

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