ParsedField Class
The ParsedField class represents a field from the ParsedResultItem output of an encrypted text coming from a document or a data source. It contains the parsed value along with its mapping and validation status.
Definition
Assembly: dynamsoft_capture_vision_flutter
class ParsedField
Properties
| Property | Type | Description |
|---|---|---|
value |
String | The processed value of the parsed field. |
rawValue |
String | The raw string value of the field as obtained from the source data. |
mappingStatus |
EnumMappingStatus | A status representing whether the field was mapped from the source data or not. |
validationStatus |
EnumValidationStatus | The status of a field’s value after the internal validation checks. |
value
The processed value of the parsed field.
String value;
rawValue
The raw string value of the field as obtained from the source data.
String rawValue;
mappingStatus
A status representing whether the field was mapped from the source data or not, represented as a EnumMappingStatus. If the field was unsuccessful during the mapping process, the mappingStatus would be EnumMappingStatus.failed.
EnumMappingStatus mappingStatus;
validationStatus
The status of a field’s value after the internal validation checks, represented as a EnumValidationStatus. Once a field is parsed by the Code Parser, it is run through validation checks to make sure that the information is accurate and correct. If a field’s value does not pass, the validationStatus would be EnumValidationStatus.failed.
EnumValidationStatus validationStatus;