Class: Google::Apis::TestingV1::Apk
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::Apk
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/testing_v1/classes.rb,
lib/google/apis/testing_v1/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ Apk
Returns a new instance of Apk.
636 637 638 |
# File 'lib/google/apis/testing_v1/classes.rb', line 636 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
628 629 630 |
# File 'lib/google/apis/testing_v1/classes.rb', line 628 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
634 635 636 |
# File 'lib/google/apis/testing_v1/classes.rb', line 634 def package_name @package_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
641 642 643 644 |
# File 'lib/google/apis/testing_v1/classes.rb', line 641 def update!(**args) @location = args[:location] if args.key?(:location) @package_name = args[:package_name] if args.key?(:package_name) end |