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.



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

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

Instance Attribute Details

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

All APKs. Corresponds to the JSON property apks



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

def apks
  @apks
end

#kindString

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

Returns:

  • (String)


133
134
135
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 133

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



140
141
142
143
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 140

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