Class: Google::Apis::AndroidpublisherV3::Apk

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Apk

Returns a new instance of Apk.



130
131
132
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 130

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#binaryGoogle::Apis::AndroidpublisherV3::ApkBinary

Represents the binary payload of an APK. Corresponds to the JSON property binary



123
124
125
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 123

def binary
  @binary
end

#version_codeFixnum

The version code of the APK, as specified in the manifest file. Corresponds to the JSON property versionCode

Returns:

  • (Fixnum)


128
129
130
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 128

def version_code
  @version_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



135
136
137
138
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 135

def update!(**args)
  @binary = args[:binary] if args.key?(:binary)
  @version_code = args[:version_code] if args.key?(:version_code)
end