Class: Google::Apis::AndroidpublisherV2::ListApksResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidpublisherV2::ListApksResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v2/classes.rb,
 generated/google/apis/androidpublisher_v2/representations.rb,
 generated/google/apis/androidpublisher_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #apks  ⇒ Array<Google::Apis::AndroidpublisherV2::Apk> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property apks.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListApksResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListApksResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListApksResponse
Returns a new instance of ListApksResponse
| 187 188 189 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 187 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#apks ⇒ Array<Google::Apis::AndroidpublisherV2::Apk>
Corresponds to the JSON property apks
| 179 180 181 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 179 def apks @apks end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidpublisher#apksListResponse".
Corresponds to the JSON property kind
| 185 186 187 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 185 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 192 193 194 195 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 192 def update!(**args) @apks = args[:apks] if args.key?(:apks) @kind = args[:kind] if args.key?(:kind) end |