Show / Hide Table of Contents

Class FieldName

The name of a form field.

Inheritance
object
FieldName
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class FieldName

Properties

BoundingPolygon

Declaration
[JsonProperty(PropertyName = "boundingPolygon")]
public BoundingPolygon BoundingPolygon { get; set; }
Property Value
Type Description
BoundingPolygon

Confidence

Declaration
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

The confidence score between 0 and 1.

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the field.

Remarks

Required

WordIndexes

Declaration
[JsonProperty(PropertyName = "wordIndexes")]
public List<int> WordIndexes { get; set; }
Property Value
Type Description
List<int>

The indexes of the words in the field name.

In this article
Back to top