Class: Google::Apis::AndroidpublisherV3::Apk
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::Apk
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb
Instance Attribute Summary collapse
-
#binary ⇒ Google::Apis::AndroidpublisherV3::ApkBinary
Represents the binary payload of an APK.
-
#test_binary ⇒ Google::Apis::AndroidpublisherV3::ApkBinary
Represents the binary payload of an APK.
-
#version_code ⇒ Fixnum
The version code of the APK, as specified in the APK's manifest file.
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.
44 45 46 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 44 def initialize(**args) update!(**args) end |
Instance Attribute Details
#binary ⇒ Google::Apis::AndroidpublisherV3::ApkBinary
Represents the binary payload of an APK.
Corresponds to the JSON property binary
32 33 34 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 32 def binary @binary end |
#test_binary ⇒ Google::Apis::AndroidpublisherV3::ApkBinary
Represents the binary payload of an APK.
Corresponds to the JSON property testBinary
37 38 39 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 37 def test_binary @test_binary end |
#version_code ⇒ Fixnum
The version code of the APK, as specified in the APK's manifest file.
Corresponds to the JSON property versionCode
42 43 44 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 42 def version_code @version_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
49 50 51 52 53 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 49 def update!(**args) @binary = args[:binary] if args.key?(:binary) @test_binary = args[:test_binary] if args.key?(:test_binary) @version_code = args[:version_code] if args.key?(:version_code) end |