Class: Google::Apis::AndroidpublisherV3::ApksListResponse

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

Response listing all APKs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApksListResponse

Returns a new instance of ApksListResponse.



350
351
352
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 350

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

Instance Attribute Details

#apksArray<Google::Apis::AndroidpublisherV3::Apk>

All APKs. Corresponds to the JSON property apks



343
344
345
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 343

def apks
  @apks
end

#kindString

The kind of this response ("androidpublisher#apksListResponse"). Corresponds to the JSON property kind

Returns:

  • (String)


348
349
350
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 348

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



355
356
357
358
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 355

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