class Google::Apis::AndroidpublisherV2::Apk

Attributes

binary[RW]

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

version_code[RW]

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

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/androidpublisher_v2/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 generated/google/apis/androidpublisher_v2/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