# EnumMappingStatus

`EnumMappingStatus` is an enumeration that represents whether the associated field was mapped from the source data or not.

## Definition

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

```js
enum EnumMappingStatus {
  MS_NONE,
  MS_SUCCEEDED,
  MS_FAILED
}
```

## Members

| Member | Description |
| ------ | ----------- |
| `MS_NONE` | No mapping has been performed. |
| `MS_SUCCEEDED` | Mapping of this field was successful. |
| `MS_FAILED` | Mapping of this field was unsuccessful. |
