Class: Google::Apis::AndroidpublisherV2::BundlesListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidpublisherV2::BundlesListResponse
 
- 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
- 
  
    
      #bundles  ⇒ Array<Google::Apis::AndroidpublisherV2::Bundle> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property bundles.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BundlesListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BundlesListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BundlesListResponse
Returns a new instance of BundlesListResponse
| 311 312 313 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 311 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#bundles ⇒ Array<Google::Apis::AndroidpublisherV2::Bundle>
Corresponds to the JSON property bundles
| 303 304 305 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 303 def bundles @bundles end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidpublisher#bundlesListResponse".
Corresponds to the JSON property kind
| 309 310 311 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 309 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 316 317 318 319 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 316 def update!(**args) @bundles = args[:bundles] if args.key?(:bundles) @kind = args[:kind] if args.key?(:kind) end |