Class: Google::Apis::AndroidpublisherV3::Apk
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::Apk
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Information about an APK. The resource for ApksService.
Instance Attribute Summary collapse
-
#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 manifest file.
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.
259 260 261 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 259 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
252 253 254 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 252 def binary @binary end |
#version_code ⇒ Fixnum
The version code of the APK, as specified in the manifest file.
Corresponds to the JSON property versionCode
257 258 259 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 257 def version_code @version_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
264 265 266 267 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 264 def update!(**args) @binary = args[:binary] if args.key?(:binary) @version_code = args[:version_code] if args.key?(:version_code) end |