Show / Hide Table of Contents

Class ProductSearchResults

Results for a product search request.

Inheritance
System.Object
ProductSearchResults
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Vision.v1.Data
Assembly: Google.Apis.Vision.v1.dll
Syntax
public class ProductSearchResults : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IndexTime

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.

Declaration
[JsonProperty("indexTime")]
public virtual object IndexTime { get; set; }
Property Value
Type Description
System.Object

ProductGroupedResults

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.

Declaration
[JsonProperty("productGroupedResults")]
public virtual IList<GroupedResult> ProductGroupedResults { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GroupedResult>

Results

List of results, one for each product match.

Declaration
[JsonProperty("results")]
public virtual IList<Result> Results { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Result>

Implements

IDirectResponseSchema
In This Article
Back to top