Class: Google::Apis::VisionV1::ListProductSetsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_tokenString

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

Returns:

  • (String)


8987
8988
8989
# File 'lib/google/apis/vision_v1/classes.rb', line 8987

def next_page_token
  @next_page_token
end

#product_setsArray<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