Show / Hide Table of Contents

Class BatchProcessDocumentsRequest

Request to batch process documents as an asynchronous operation. The output is written to Cloud Storage as JSON in the [Document] format.

Inheritance
System.Object
BatchProcessDocumentsRequest
Implements
IMessage<BatchProcessDocumentsRequest>
System.IEquatable<BatchProcessDocumentsRequest>
IDeepCloneable<BatchProcessDocumentsRequest>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DocumentAI.V1Beta2
Assembly: Google.Cloud.DocumentAI.V1Beta2.dll
Syntax
public sealed class BatchProcessDocumentsRequest : IMessage<BatchProcessDocumentsRequest>, IEquatable<BatchProcessDocumentsRequest>, IDeepCloneable<BatchProcessDocumentsRequest>, IBufferMessage, IMessage

Constructors

BatchProcessDocumentsRequest()

Declaration
public BatchProcessDocumentsRequest()

BatchProcessDocumentsRequest(BatchProcessDocumentsRequest)

Declaration
public BatchProcessDocumentsRequest(BatchProcessDocumentsRequest other)
Parameters
Type Name Description
BatchProcessDocumentsRequest other

Properties

Parent

Target project and location to make a call.

Format: projects/{project-id}/locations/{location-id}.

If no location is specified, a region will be chosen automatically.

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

Requests

Required. Individual requests for each document.

Declaration
public RepeatedField<ProcessDocumentRequest> Requests { get; }
Property Value
Type Description
RepeatedField<ProcessDocumentRequest>
Back to top