Class: Google::Apis::ManufacturersV1::ListProductsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ManufacturersV1::ListProductsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/manufacturers_v1/classes.rb,
 generated/google/apis/manufacturers_v1/representations.rb,
 generated/google/apis/manufacturers_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token for the retrieval of the next page of product statuses. 
- 
  
    
      #products  ⇒ Array<Google::Apis::ManufacturersV1::Product> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of the products. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListProductsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListProductsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListProductsResponse
Returns a new instance of ListProductsResponse
| 522 523 524 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 522 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
The token for the retrieval of the next page of product statuses.
Corresponds to the JSON property nextPageToken
| 515 516 517 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 515 def next_page_token @next_page_token end | 
#products ⇒ Array<Google::Apis::ManufacturersV1::Product>
List of the products.
Corresponds to the JSON property products
| 520 521 522 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 520 def products @products end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 527 528 529 530 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 527 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @products = args[:products] if args.key?(:products) end |