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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListProductSetsResponse
Returns a new instance of ListProductSetsResponse
7077 7078 7079 |
# File 'generated/google/apis/vision_v1/classes.rb', line 7077 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
7070 7071 7072 |
# File 'generated/google/apis/vision_v1/classes.rb', line 7070 def next_page_token @next_page_token end |
#product_sets ⇒ Array<Google::Apis::VisionV1::ProductSet>
List of ProductSets.
Corresponds to the JSON property productSets
7075 7076 7077 |
# File 'generated/google/apis/vision_v1/classes.rb', line 7075 def product_sets @product_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7082 7083 7084 7085 |
# File 'generated/google/apis/vision_v1/classes.rb', line 7082 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 |