Show / Hide Table of Contents

Class EntityExtractionParams

Parameters to control entity extraction behavior.

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

Constructors

EntityExtractionParams()

Declaration
public EntityExtractionParams()

EntityExtractionParams(EntityExtractionParams)

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

Properties

Enabled

Whether to enable entity extraction.

Declaration
public bool Enabled { get; set; }
Property Value
Type Description
System.Boolean

ModelVersion

Model version of the entity extraction. Default is "builtin/stable". Specify "builtin/latest" for the latest model.

Declaration
public string ModelVersion { get; set; }
Property Value
Type Description
System.String
Back to top