Class: Google::Apis::VisionV1::ListProductSetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::ListProductSetsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/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.
8944 8945 8946 |
# File 'generated/google/apis/vision_v1/classes.rb', line 8944 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
8937 8938 8939 |
# File 'generated/google/apis/vision_v1/classes.rb', line 8937 def next_page_token @next_page_token end |
#product_sets ⇒ Array<Google::Apis::VisionV1::ProductSet>
List of ProductSets.
Corresponds to the JSON property productSets
8942 8943 8944 |
# File 'generated/google/apis/vision_v1/classes.rb', line 8942 def product_sets @product_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8949 8950 8951 8952 |
# File 'generated/google/apis/vision_v1/classes.rb', line 8949 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 |