@@ -16,8 +16,7 @@ The ParsedResultItem interface provides a structure representing the result item
1616interface ParsedResultItem extends Core .CapturedResultItem {
1717 codeType: string ;
1818 jsonString: string ;
19- parsedFields: Array <{ name: string , value: string }>;
20- getFieldValue(fieldName : string ): Promise <string >;
19+ getFieldValue: (fieldName : string ) => Promise <string >;
2120 getFieldMappingStatus: (fieldName : string ) => EnumMappingStatus ;
2221 getFieldValidationStatus: (fieldName : string ) => EnumValidationStatus ;
2322}
@@ -27,12 +26,10 @@ interface ParsedResultItem extends Core.CapturedResultItem {
2726| ------------------------------------------------------- | ----------------------------------------------------------------------- |
2827| [ codeType] ( #codetype ) | Returns the code type of the parsed result. |
2928| [ jsonString] ( #jsonstring ) | Returns the parsed result as a JSON formatted string. |
30- | [ parsedFields] ( #parsedfields ) | Returns an array that contains all parsed fields. |
3129| [ getFieldValue()] ( #getfieldvalue ) | Gets the value of a specified field from the parsed result. |
3230| [ getFieldMappingStatus()] ( #getfieldmappingstatus ) | Gets the mapping status of a specified field from the parsed result. |
3331| [ getFieldValidationStatus()] ( #getfieldvalidationstatus ) | Gets the validation status of a specified field from the parsed result. |
3432
35-
3633## codeType
3734
3835Returns the code type of the parsed result.
@@ -49,14 +46,6 @@ Returns the parsed result as a JSON formatted string.
4946jsonString : string ;
5047```
5148
52- ## parsedFields
53-
54- Returns an array that contains all parsed fields.
55-
56- ``` ts
57- parsedFields : Array < { name : string , value : string }> ;
58- ```
59-
6049## getFieldValue
6150
6251Gets the value of a specified field from the parsed result.
0 commit comments