Class: Google::Apis::PagespeedonlineV2::FormatString::Arg::Rect
- Inherits:
-
Object
- Object
- Google::Apis::PagespeedonlineV2::FormatString::Arg::Rect
- 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
-
#height ⇒ Fixnum
The height of the rect.
-
#left ⇒ Fixnum
The left coordinate of the rect, in page coordinates.
-
#top ⇒ Fixnum
The top coordinate of the rect, in page coordinates.
-
#width ⇒ Fixnum
The width of the rect.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Rect
constructor
A new instance of Rect.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Rect
Returns a new instance of Rect
123 124 125 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 123 def initialize(**args) update!(**args) end |
Instance Attribute Details
#height ⇒ Fixnum
The height of the rect.
Corresponds to the JSON property height
106 107 108 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 106 def height @height end |
#left ⇒ Fixnum
The left coordinate of the rect, in page coordinates.
Corresponds to the JSON property left
111 112 113 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 111 def left @left end |
#top ⇒ Fixnum
The top coordinate of the rect, in page coordinates.
Corresponds to the JSON property top
116 117 118 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 116 def top @top end |
#width ⇒ Fixnum
The width of the rect.
Corresponds to the JSON property width
121 122 123 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 121 def width @width end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
128 129 130 131 132 133 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 128 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 |