Show / Hide Table of Contents

Class DocumentField

Form field.

Inheritance
object
DocumentField
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 DocumentField

Properties

FieldLabel

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

FieldName

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

FieldType

Declaration
[Required(ErrorMessage = "FieldType is required.")]
[JsonProperty(PropertyName = "fieldType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DocumentField.FieldTypeEnum? FieldType { get; set; }
Property Value
Type Description
DocumentField.FieldTypeEnum?

The field type.

Remarks

Required

FieldValue

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

Required

In this article
Back to top