Enumeration MappingStatus
MappingStatus
represents the outcome of a mapping operation on a field.
- JavaScript
enum EnumMappingStatus { /** * Indicates that no mapping operation has been initiated. */ MS_NONE = 0, /** * Indicates that the mapping operation was successfully completed. */ MS_SUCCEEDED = 1, /** * Indicates that the mapping operation failed to complete. */ MS_FAILED = 2 }