Show / Hide Table of Contents

Class AsyncBatchAnnotateFilesResponse

Response to an async batch file annotation request.

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

Properties

ETag

The ETag of the item.

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

Responses

The list of file annotation responses, one for each request in AsyncBatchAnnotateFilesRequest.

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

Implements

IDirectResponseSchema
In This Article
Back to top