# Enumeration MappingStatus

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

```csharp
public enum EnumMappingStatus
{
   /** 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
}
```
