Class: Google::Apis::TestingV1::Apk
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::Apk
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/google/apis/testing_v1/representations.rb
Overview
An Android package file to install.
Instance Attribute Summary collapse
-
#location ⇒ Google::Apis::TestingV1::FileReference
A reference to a file, used for user inputs.
-
#package_name ⇒ String
The java package for the APK to be installed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Apk
constructor
A new instance of Apk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Apk
Returns a new instance of Apk
633 634 635 |
# File 'generated/google/apis/testing_v1/classes.rb', line 633 def initialize(**args) update!(**args) end |
Instance Attribute Details
#location ⇒ Google::Apis::TestingV1::FileReference
A reference to a file, used for user inputs.
Corresponds to the JSON property location
625 626 627 |
# File 'generated/google/apis/testing_v1/classes.rb', line 625 def location @location end |
#package_name ⇒ String
The java package for the APK to be installed.
Value is determined by examining the application's manifest.
Corresponds to the JSON property packageName
631 632 633 |
# File 'generated/google/apis/testing_v1/classes.rb', line 631 def package_name @package_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
638 639 640 641 |
# File 'generated/google/apis/testing_v1/classes.rb', line 638 def update!(**args) @location = args[:location] if args.key?(:location) @package_name = args[:package_name] if args.key?(:package_name) end |