Class: Google::Apis::TestingV1::Apk

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#locationGoogle::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_nameString

The java package for the APK to be installed. Value is determined by examining the application's manifest. Corresponds to the JSON property packageName

Returns:

  • (String)


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