Show / Hide Table of Contents

Class OperationMetadata

Contains metadata for the BatchProcessDocuments operation.

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

Constructors

OperationMetadata()

Declaration
public OperationMetadata()

OperationMetadata(OperationMetadata)

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

Properties

CreateTime

The creation time of the operation.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Timestamp

State

The state of the current batch processing.

Declaration
public OperationMetadata.Types.State State { get; set; }
Property Value
Type Description
OperationMetadata.Types.State

StateMessage

A message providing more details about the current state of processing.

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

UpdateTime

The last update time of the operation.

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