Class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint
- 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
Point for describing bounding boxes tap locations Top left is 0,0
Instance Attribute Summary collapse
-
#x_coordinate ⇒ Fixnum
Corresponds to the JSON property
xCoordinate. -
#y_coordinate ⇒ Fixnum
Corresponds to the JSON property
yCoordinate.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AndroidxCrawlerOutputPoint
constructor
A new instance of AndroidxCrawlerOutputPoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AndroidxCrawlerOutputPoint
Returns a new instance of AndroidxCrawlerOutputPoint.
39 40 41 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 39 def initialize(**args) update!(**args) end |
Instance Attribute Details
#x_coordinate ⇒ Fixnum
Corresponds to the JSON property xCoordinate
32 33 34 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 32 def x_coordinate @x_coordinate end |
#y_coordinate ⇒ Fixnum
Corresponds to the JSON property yCoordinate
37 38 39 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 37 def y_coordinate @y_coordinate end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
44 45 46 47 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 44 def update!(**args) @x_coordinate = args[:x_coordinate] if args.key?(:x_coordinate) @y_coordinate = args[:y_coordinate] if args.key?(:y_coordinate) end |