Class: Google::Apis::AndroidpublisherV3::BundlesListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV3::BundlesListResponse
 
 
- 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 app bundles.
Instance Attribute Summary collapse
- 
  
    
      #bundles  ⇒ Array<Google::Apis::AndroidpublisherV3::Bundle> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
All app bundles.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of this response ("androidpublisher#bundlesListResponse").
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BundlesListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of BundlesListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ BundlesListResponse
Returns a new instance of BundlesListResponse.
      1210 1211 1212  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1210 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#bundles ⇒ Array<Google::Apis::AndroidpublisherV3::Bundle>
All app bundles.
Corresponds to the JSON property bundles
      1203 1204 1205  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1203 def bundles @bundles end  | 
  
#kind ⇒ String
The kind of this response ("androidpublisher#bundlesListResponse").
Corresponds to the JSON property kind
      1208 1209 1210  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1208 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1215 1216 1217 1218  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1215 def update!(**args) @bundles = args[:bundles] if args.key?(:bundles) @kind = args[:kind] if args.key?(:kind) end  |