# EnumMappingStatus

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

## Definition

*Assembly:* dynamsoft_capture_vision_flutter

```dart
enum EnumMappingStatus {
    none,
    succeeded,
    failed
}
```

## Members

| Member | Description |
| ------ | ----------- |
| `none` | No mapping has been performed. |
| `succeeded` | Mapping of this field was successful. |
| `failed` | Mapping of this field was unsuccessful. |
