# Enumeration MappingStatus

`MappingStatus` represents the outcome of a mapping operation on a field.

```python
class EnumMappingStatus(IntEnum):
    # The field has no mapping specified. 
    MS_NONE
    # Find a mapping for the field value. 
    MS_SUCCEEDED
    # Failed to find a mapping for the field value. 
    MS_FAILED
```
