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

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListProductSetsResponse

Returns a new instance of ListProductSetsResponse.



9465
9466
9467
# File 'generated/google/apis/vision_v1/classes.rb', line 9465

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)


9458
9459
9460
# File 'generated/google/apis/vision_v1/classes.rb', line 9458

def next_page_token
  @next_page_token
end

#product_setsArray<Google::Apis::VisionV1::ProductSet>

List of ProductSets. Corresponds to the JSON property productSets



9463
9464
9465
# File 'generated/google/apis/vision_v1/classes.rb', line 9463

def product_sets
  @product_sets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9470
9471
9472
9473
# File 'generated/google/apis/vision_v1/classes.rb', line 9470

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