Class: Google::Apis::VisionV1::ListProductSetsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1::ListProductSetsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/vision_v1/classes.rb,
lib/google/apis/vision_v1/representations.rb,
lib/google/apis/vision_v1/representations.rb 
Overview
Response message for the ListProductSets method.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token to retrieve the next page of results, or empty if there are no more results in the list.
 - 
  
    
      #product_sets  ⇒ Array<Google::Apis::VisionV1::ProductSet> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of ProductSets.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListProductSetsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListProductSetsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListProductSetsResponse
Returns a new instance of ListProductSetsResponse.
      8994 8995 8996  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 8994 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
      8987 8988 8989  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 8987 def next_page_token @next_page_token end  | 
  
#product_sets ⇒ Array<Google::Apis::VisionV1::ProductSet>
List of ProductSets.
Corresponds to the JSON property productSets
      8992 8993 8994  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 8992 def product_sets @product_sets end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8999 9000 9001 9002  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 8999 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @product_sets = args[:product_sets] if args.key?(:product_sets) end  |