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.
9009 9010 9011 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9009 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
9002 9003 9004 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9002 def next_page_token @next_page_token end |
#product_sets ⇒ Array<Google::Apis::VisionV1::ProductSet>
List of ProductSets.
Corresponds to the JSON property productSets
9007 9008 9009 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9007 def product_sets @product_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9014 9015 9016 9017 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9014 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 |