Show / Hide Table of Contents

Class ProcessDocumentResponse

Response to a single document processing request.

Inheritance
System.Object
ProcessDocumentResponse
Implements
IMessage<ProcessDocumentResponse>
System.IEquatable<ProcessDocumentResponse>
IDeepCloneable<ProcessDocumentResponse>
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 ProcessDocumentResponse : IMessage<ProcessDocumentResponse>, IEquatable<ProcessDocumentResponse>, IDeepCloneable<ProcessDocumentResponse>, IBufferMessage, IMessage

Constructors

ProcessDocumentResponse()

Declaration
public ProcessDocumentResponse()

ProcessDocumentResponse(ProcessDocumentResponse)

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

Properties

InputConfig

Information about the input file. This is the same as the corresponding input config in the request.

Declaration
public InputConfig InputConfig { get; set; }
Property Value
Type Description
InputConfig

OutputConfig

The output location of the parsed responses. The responses are written to this location as JSON-serialized Document objects.

Declaration
public OutputConfig OutputConfig { get; set; }
Property Value
Type Description
OutputConfig
Back to top