class Google::Apis::AndroidpublisherV3::Apk

Information about an APK. The resource for ApksService.

Attributes

binary[RW]

Represents the binary payload of an APK. Corresponds to the JSON property `binary` @return [Google::Apis::AndroidpublisherV3::ApkBinary]

version_code[RW]

The version code of the APK, as specified in the manifest file. Corresponds to the JSON property `versionCode` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 39
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidpublisher_v3/classes.rb, line 44
def update!(**args)
  @binary = args[:binary] if args.key?(:binary)
  @version_code = args[:version_code] if args.key?(:version_code)
end