Show / Hide Table of Contents

Class GoogleCloudVisionV1p4beta1ImportProductSetsResponse

Response message for the ImportProductSets method. This message is returned by the google.longrunning.Operations.GetOperation method in the returned google.longrunning.Operation.response field.

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

Properties

ETag

The ETag of the item.

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

ReferenceImages

The list of reference_images that are imported successfully.

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

Statuses

The rpc status for each ImportProductSet request, including both successes and errors. The number of statuses here matches the number of lines in the csv file, and statuses[i] stores the success or failure status of processing the i-th line of the csv, starting from line 0.

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

Implements

IDirectResponseSchema
In This Article
Back to top