Class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputRectangle
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputRectangle
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappdistribution_v1alpha/classes.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb
Overview
Rectangle for describing bounding boxes
Instance Attribute Summary collapse
-
#bottom ⇒ Fixnum
Corresponds to the JSON property
bottom. -
#left ⇒ Fixnum
Corresponds to the JSON property
left. -
#right ⇒ Fixnum
Corresponds to the JSON property
right. -
#top ⇒ Fixnum
Corresponds to the JSON property
top.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AndroidxCrawlerOutputRectangle
constructor
A new instance of AndroidxCrawlerOutputRectangle.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AndroidxCrawlerOutputRectangle
Returns a new instance of AndroidxCrawlerOutputRectangle.
74 75 76 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 74 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bottom ⇒ Fixnum
Corresponds to the JSON property bottom
57 58 59 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 57 def bottom @bottom end |
#left ⇒ Fixnum
Corresponds to the JSON property left
62 63 64 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 62 def left @left end |
#right ⇒ Fixnum
Corresponds to the JSON property right
67 68 69 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 67 def right @right end |
#top ⇒ Fixnum
Corresponds to the JSON property top
72 73 74 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 72 def top @top end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
79 80 81 82 83 84 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 79 def update!(**args) @bottom = args[:bottom] if args.key?(:bottom) @left = args[:left] if args.key?(:left) @right = args[:right] if args.key?(:right) @top = args[:top] if args.key?(:top) end |