# Interface ParsedResult

Interface `ParsedResult` represents the result of a code parsing process. It provides access to the individual parsed items resulting from a document or an encrypted text.

## Definition

*Assembly:* dynamsoft-capture-vision-react-native

```js
interface ParsedResult extends CapturedResultBase
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| [`items`](#items) | *Array\<ParsedResultItem\>* | A list of [`ParsedResultItem`](https://www.dynamsoft.com/code-parser/docs/mobile/programming/react-native/api-reference/parsed-result-item.md), the basic unit representing a single parsed result from an encrypted text. |

The following properties are inherited from [`CapturedResultBase`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md):

| Property | Type | Description |
| -------- | ---- | ----------- |
| [`originalImageHashId`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md#originalimagehashid) | *String* | The hash id of the original image. You can use this ID to get the original image via the `IntermediateResultManager` interface. |
| [`rotationTransformMatrix`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md#rotationtransformmatrix) |  *Matrix4* | The rotation transformation matrix of the original image relative to the rotated image. |
| [`errorCode`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md#errorcode) | *int* | The error code associated with the capture result. |
| [`errorMessage`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md#errormessage) | *String* | The error message associated with the capture result. |

### items

A list of [`ParsedResultItem`](https://www.dynamsoft.com/code-parser/docs/mobile/programming/react-native/api-reference/parsed-result-item.md), the basic unit representing a single parsed result from an encrypted text.

```js
items?: Array<ParsedResultItem>
```
