Class: Google::Apis::VisionV1::ProductSearchResults
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::ProductSearchResults
- 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
Results for a product search request.
Instance Attribute Summary collapse
-
#index_time ⇒ String
Timestamp of the index which provided these results.
-
#product_grouped_results ⇒ Array<Google::Apis::VisionV1::GroupedResult>
List of results grouped by products detected in the query image.
-
#results ⇒ Array<Google::Apis::VisionV1::Result>
List of results, one for each product match.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductSearchResults
constructor
A new instance of ProductSearchResults.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProductSearchResults
Returns a new instance of ProductSearchResults.
9602 9603 9604 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9602 def initialize(**args) update!(**args) end |
Instance Attribute Details
#index_time ⇒ String
Timestamp of the index which provided these results. Products added to the
product set and products removed from the product set after this time are not
reflected in the current results.
Corresponds to the JSON property indexTime
9587 9588 9589 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9587 def index_time @index_time end |
#product_grouped_results ⇒ Array<Google::Apis::VisionV1::GroupedResult>
List of results grouped by products detected in the query image. Each entry
corresponds to one bounding polygon in the query image, and contains the
matching products specific to that region. There may be duplicate product
matches in the union of all the per-product results.
Corresponds to the JSON property productGroupedResults
9595 9596 9597 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9595 def product_grouped_results @product_grouped_results end |
#results ⇒ Array<Google::Apis::VisionV1::Result>
List of results, one for each product match.
Corresponds to the JSON property results
9600 9601 9602 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9600 def results @results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9607 9608 9609 9610 9611 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9607 def update!(**args) @index_time = args[:index_time] if args.key?(:index_time) @product_grouped_results = args[:product_grouped_results] if args.key?(:product_grouped_results) @results = args[:results] if args.key?(:results) end |