Class: Google::Apis::AndroidpublisherV3::ListingsListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV3::ListingsListResponse
 
 
- 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 localized listings.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of this response ("androidpublisher#listingsListResponse").
 - 
  
    
      #listings  ⇒ Array<Google::Apis::AndroidpublisherV3::Listing> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
All localized listings.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListingsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListingsListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListingsListResponse
Returns a new instance of ListingsListResponse.
      3632 3633 3634  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3632 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
The kind of this response ("androidpublisher#listingsListResponse").
Corresponds to the JSON property kind
      3625 3626 3627  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3625 def kind @kind end  | 
  
#listings ⇒ Array<Google::Apis::AndroidpublisherV3::Listing>
All localized listings.
Corresponds to the JSON property listings
      3630 3631 3632  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3630 def listings @listings end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3637 3638 3639 3640  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3637 def update!(**args) @kind = args[:kind] if args.key?(:kind) @listings = args[:listings] if args.key?(:listings) end  |