Class FieldValue
The value of a form field.
Inheritance
FieldValue
      
      
      
      
      
      
      
  Inherited Members
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
[JsonConverter(typeof(FieldValueModelConverter))]
public class FieldValueProperties
BoundingPolygon
Declaration
[Required(ErrorMessage = "BoundingPolygon is required.")]
[JsonProperty(PropertyName = "boundingPolygon")]
public BoundingPolygon BoundingPolygon { get; set; }Property Value
| Type | Description | 
|---|---|
| BoundingPolygon | 
Remarks
Required
Confidence
Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }Property Value
| Type | Description | 
|---|---|
| float? | The confidence score between 0 and 1. | 
Remarks
Required
NormalizedConfidence
Declaration
[JsonProperty(PropertyName = "normalizedConfidence")]
public float? NormalizedConfidence { get; set; }Property Value
| Type | Description | 
|---|---|
| float? | The normalized value confidence score between 0 and 1. | 
NormalizedValue
Declaration
[JsonProperty(PropertyName = "normalizedValue")]
public string NormalizedValue { get; set; }Property Value
| Type | Description | 
|---|---|
| string | The normalized value. | 
Text
Declaration
[JsonProperty(PropertyName = "text")]
public string Text { get; set; }Property Value
| Type | Description | 
|---|---|
| string | The detected text of a field. | 
WordIndexes
Declaration
[Required(ErrorMessage = "WordIndexes is required.")]
[JsonProperty(PropertyName = "wordIndexes")]
public List<int> WordIndexes { get; set; }Property Value
| Type | Description | 
|---|---|
| List<int> | The indexes of the words in the field value. | 
Remarks
Required