Show / Hide Table of Contents

Class GoogleCloudVisionV1p1beta1ProductSearchResultsResult

Information about a product.

Inheritance
System.Object
GoogleCloudVisionV1p1beta1ProductSearchResultsResult
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 GoogleCloudVisionV1p1beta1ProductSearchResultsResult : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Image

The resource name of the image from the product that is the closest match to the query.

Declaration
[JsonProperty("image")]
public virtual string Image { get; set; }
Property Value
Type Description
System.String

Product

The Product.

Declaration
[JsonProperty("product")]
public virtual GoogleCloudVisionV1p1beta1Product Product { get; set; }
Property Value
Type Description
GoogleCloudVisionV1p1beta1Product

Score

A confidence level on the match, ranging from 0 (no confidence) to 1 (full confidence).

Declaration
[JsonProperty("score")]
public virtual float? Score { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

IDirectResponseSchema
In This Article
Back to top